mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 11:28:42 +00:00
39 lines
552 B
PHP
39 lines
552 B
PHP
--TEST--
|
|
Test V8::executeString() : test context separation
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$JS = <<< EOT
|
|
print(PHP.foo);
|
|
EOT;
|
|
|
|
$a = new V8Js();
|
|
$a->foo = 'from first.js';
|
|
|
|
try {
|
|
$a->executeString($JS, 'first.js');
|
|
} catch (V8JsScriptException $e) {
|
|
var_dump($e);
|
|
}
|
|
|
|
echo "\n";
|
|
|
|
$b = new V8Js();
|
|
$b->foo = 'from second.js';
|
|
|
|
try {
|
|
$b->executeString($JS, 'second.js');
|
|
} catch (V8JsScriptException $e) {
|
|
var_dump($e);
|
|
}
|
|
|
|
echo "\n";
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
from first.js
|
|
from second.js
|
|
===EOF===
|