mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 21:18:40 +00:00
28 lines
362 B
Plaintext
28 lines
362 B
Plaintext
|
--TEST--
|
||
|
Test V8::executeString() : Method access on derived classes
|
||
|
--SKIPIF--
|
||
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class Foo extends \V8Js
|
||
|
{
|
||
|
public function hello()
|
||
|
{
|
||
|
print("Hello World\n");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$JS = <<< EOT
|
||
|
PHP.hello();
|
||
|
EOT;
|
||
|
|
||
|
$v8 = new Foo();
|
||
|
$v8->executeString($JS);
|
||
|
|
||
|
?>
|
||
|
===EOF===
|
||
|
--EXPECT--
|
||
|
Hello World
|
||
|
===EOF===
|