| 12345678910111213141516171819202122232425262728 | --TEST--Test V8::executeString() : Call passed-back function (property access)--SKIPIF--<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>--FILE--<?php$v8 = new V8Js();$JS = <<< EOT(function(exports) {  // begin module code  exports.hello = function() { return 'hello'; };  // end module code  return exports;})({})EOT;$exports = $v8->executeString($JS, 'basic.js');$v8->func = $exports->hello;echo $v8->executeString('PHP.func();')."\n";?>===EOF===--EXPECT--hello===EOF===
 |