-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathobject.phpt
50 lines (45 loc) · 918 Bytes
/
object.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--TEST--
Test V8::executeString() : Object passed from PHP
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$JS = <<< EOT
function dump(a)
{
for (var i in a) {
var val = a[i];
print(i + ' => ' + val + "\\n");
}
}
function test()
{
dump(PHP.myobj);
PHP.myobj.foo = 'CHANGED';
PHP.myobj.mytest();
}
test();
print(PHP.myobj.foo + "\\n");
EOT;
// Test class
class Testing
{
public $foo = 'ORIGINAL';
private $my_private = 'arf'; // Should not show in JS side
protected $my_protected = 'argh'; // Should not show in JS side
function mytest() { echo 'Here be monsters..', "\n"; }
}
$a = new V8Js();
$a->myobj = new Testing();
$a->executeString($JS, "test.js");
// Check that variable has not been modified
var_dump($a->myobj->foo);
?>
===EOF===
--EXPECT--
mytest => function () { [native code] }
$foo => ORIGINAL
Here be monsters..
CHANGED
string(7) "CHANGED"
===EOF===