0
0
mirror of https://github.com/phpv8/v8js.git synced 2025-01-03 08:11:52 +00:00

Update unicode.php

removed flagg that was misplaced and would've been useless
This commit is contained in:
Peter Hoffmann 2017-06-12 10:11:02 +02:00 committed by GitHub
parent 2fbd780771
commit 2c60547ece

View File

@ -25,7 +25,7 @@ $jscript->executeString("values = {}");
$jscript->executeString("values['snapshot'] = snapshot.unicode");
$jscript->executeString("values['php'] = php.unicode");
$jscript->executeString("values['execStr'] = execStr.unicode");
$values = $jscript->executeString("values", V8Js::FLAG_FORCE_ARRAY);
$values = $jscript->executeString("values");
echo "snapshot: $values->snapshot\n";
echo "php : $values->php\n";