--TEST-- Test V8::executeString() : PHP variables via get accessor --SKIPIF-- --INI-- display_errors=off --FILE-- '_SERVER', '$foobar' => 'myfoobar')); $a->executeString($JS, "test1.js"); $myfoobar = 'myfoobarfromphp'; $a->executeString($JS, "test2.js"); // Check that variables do not get in object .. var_dump($a->myfoobar, $a->foobar); ?> ===EOF=== --EXPECTF-- undefined undefined %d undefined undefined myfoobarfromphp %d myfoobarfromphp NULL NULL ===EOF===