0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 15:25:19 +00:00

Merge pull request #50 from stesie/fix-test-for-php53

Make test PHP 5.3 compatible
This commit is contained in:
Patrick Reilly 2013-10-07 09:05:42 -07:00
commit 0319b74250

View File

@ -17,7 +17,8 @@ $JS = <<< EOT
EOT;
$exports = $v8->executeString($JS, 'basic.js');
$v8->func = get_object_vars( $exports )['hello'];
$vars = get_object_vars($exports);
$v8->func = $vars['hello'];
echo $v8->executeString('PHP.func();')."\n";