0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 19:15:17 +00:00
phpv8/tests/object_reuse.phpt
2012-04-27 16:26:15 +00:00

23 lines
426 B
PHP

--TEST--
Test V8::executeString() : Test PHP object reusage
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$v8 = new V8Js();
// Reusing should work..
$v8 = new V8Js();
$foo = array('foo' => 'Destructor did not mess anything!');
$v8->foobar = $foo;
$v8->executeString("print(PHP.foobar['foo'] + '\\n');", "dtor.js");
?>
===EOF===
--EXPECT--
Destructor did not mess anything!
===EOF===