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

23 lines
426 B
Plaintext
Raw Permalink Normal View History

2010-12-30 14:04:51 +00:00
--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===