mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 20:08:41 +00:00
24 lines
456 B
PHP
24 lines
456 B
PHP
<?php
|
|
|
|
// Test class
|
|
class Testing extends V8Js
|
|
{
|
|
public $foo = 'ORIGINAL';
|
|
private $my_private = 'arf'; // Should not show in JS side
|
|
protected $my_protected = 'argh'; // Should not show in JS side
|
|
|
|
public function mytest($a, $b, $c = NULL)
|
|
{
|
|
var_dump(func_get_args());
|
|
}
|
|
}
|
|
|
|
$a = new Testing();
|
|
echo $a;
|
|
|
|
try {
|
|
$a->executeString("PHP.mytest(PHP.foo, PHP.my_private, PHP.my_protected);", "test7.js");
|
|
} catch (V8JsException $e) {
|
|
var_dump($e);
|
|
}
|