phpv8 / v8js

V8 Javascript Engine for PHP — This PHP extension embeds the Google V8 Javascript Engine
http://pecl.php.net/package/v8js
MIT License
1.83k stars 200 forks source link

Array Bug #351

Closed chenos closed 6 years ago

chenos commented 6 years ago
$v8 = new V8Js;

$v8->data = ['a' => 'a'];

$v8->executeString('print(PHP.data)'); //  [object Array]  BUG!!!!!!
echo PHP_EOL;
$v8->executeString('print({a: "a"})'); //  [object Object]

@stesie

chenos commented 6 years ago

my mistake.