@@ -8,6 +8,25 @@ PHP extension for V8 JavaScript engine
8
8
9
9
** This extension is still under heavy development and its public API may change without any warning. Use at your own risk.**
10
10
11
+ ## Why (aka Rationale)
12
+
13
+ This tool solves following domain problems:
14
+
15
+ - execute arbitrary untrusted code from user;
16
+ - provide restricted/experimental api to end-user;
17
+ - allow to use that with scripting/DSL language;
18
+ - limit execution time and used memory;
19
+ - use common language that is familiar to large audience;
20
+ - be well-maintainable and mature.
21
+
22
+ By accident (not by design) this tool could also be used to:
23
+
24
+ - render React/Vue/Angular components in PHP;
25
+ - implement node.js in PHP;
26
+ - increase the number of "why", "why not just <...>" questions.
27
+
28
+ If you have any other use, feels free to share
29
+
11
30
12
31
## About
13
32
[ php-v8] ( https://github.com/pinepain/php-v8 ) is a PHP 7.x extension
@@ -24,7 +43,7 @@ provides an accurate native V8 C++ API implementation available from PHP.
24
43
- provides a both-way interaction with PHP and V8 objects, arrays and functions;
25
44
- execution time and memory limits;
26
45
- multiple isolates and contexts at the same time;
27
- - it works;
46
+ - it works.
28
47
29
48
With this extension almost everything that the native V8 C++ API provides can be used. It provides a way to pass PHP scalars,
30
49
objects and functions to the V8 runtime and specify interactions with passed values (objects and functions only, as scalars
0 commit comments