mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 14:48:40 +00:00
33 lines
644 B
Plaintext
33 lines
644 B
Plaintext
|
--TEST--
|
||
|
Test V8Js::createSnapshot() : Basic snapshot creation & re-use
|
||
|
--SKIPIF--
|
||
|
<?php
|
||
|
require_once(dirname(__FILE__) . '/skipif.inc');
|
||
|
|
||
|
if (!method_exists('V8Js', 'createSnapshot')) {
|
||
|
die('SKIP V8Js::createSnapshot not supported');
|
||
|
}
|
||
|
?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$doublifySource = <<<EOJS
|
||
|
function doublify(x) {
|
||
|
return 2 * x;
|
||
|
}
|
||
|
EOJS;
|
||
|
|
||
|
$snap = V8Js::createSnapshot($doublifySource);
|
||
|
|
||
|
if (strlen($snap) > 0) {
|
||
|
var_dump("snapshot successfully created");
|
||
|
}
|
||
|
|
||
|
$v8 = new V8Js('PHP', array(), array(), true, $snap);
|
||
|
$v8->executeString('var_dump(doublify(23));');
|
||
|
?>
|
||
|
===EOF===
|
||
|
--EXPECT--
|
||
|
string(29) "snapshot successfully created"
|
||
|
int(46)
|
||
|
===EOF===
|