v8js icon indicating copy to clipboard operation
v8js copied to clipboard

V8 Javascript Engine for PHP — This PHP extension embeds the Google V8 Javascript Engine

Results 29 v8js issues
Sort by recently updated
recently updated
newest added

i did complie with v8 ``` /tmp/v8js (php8) » ls -al /opt/v8/lib 합계 84344 drwxr-xr-x 2 root root 4096 3월 24 02:10 . drwxr-xr-x 4 root root 4096 3월 24...

bug

Hi, i just testet the extension unsing this version: https://phpdev.toolsforresearch.com/php-7.4.28-Win32-vc15-x64.zip Installation worked just fine and the first tests have been correct but the CLI process never finishes. Here is my...

bug
Windows

One more whilst you're on a roll :) I revisited one of the scripts that's now working. Ran it through valgrind and getting 32,000bytes lost with 100 iterations. On more...

bug

This PR allows low-level access to V8's Inspector API, primarily to get call count/coverage data from it. Theoretically it's possible to connect to V8's debugger this way. However I suppose...

enhancement

When required script contains syntax errors, it silently skips it just like file was not included. ``` $v8 = new V8Js(); $v8->setModuleLoader(function ($path) { return 'synta}{ error!'; // returns undefined...

bug

- V8JsException is not guaranteed to have the method getJsFileName() defined, if it's a V8JsTimeLimitException - The 2 subtypes of exceptions aren't documented in php.net (V8JsScriptException and V8JsTimeLimitException) Also, https://secure.php.net/manual/en/v8js.construct.php...

enhancement

I managed to come across a weird scenario where javascript code executes PHP that throws exception and this exception is not caught within javascript despite try/catch blocks and FLAG_PROPAGATE_PHP_EXCEPTIONS being...

bug

If i do something like the following: ```php class MyV8 extends V8Js { function foo($payload) { echo $payload['name']; // nope :-( echo $payload->name; // this is ok. } } $v8...

enhancement

Related to #255 and #247 I stopped using registerExtension, but I think there might be one more registerExtension bug anyway, or even non-obvious bugs. - From MSHUTDOWN_FUNCTION, the only thing...

bug

Hey Not sure whether this is a bug or a hole in knowledge... I have a PHP function invoked from V8Js which returns raw binary data. The idea being that...

enhancement