mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 11:28:42 +00:00
170b1ff94c
Protected and private properties should not be available to JS context. Instead call __get function, if the property is not accessible.
45 lines
668 B
PHP
45 lines
668 B
PHP
--TEST--
|
|
Test V8::executeString() : Property visibility __get
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo {
|
|
private $privBar = "privBar";
|
|
protected $protBar = "protBar";
|
|
public $pubBar = "pubBar";
|
|
|
|
public function __get($key)
|
|
{
|
|
var_dump($key);
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
$js = new V8Js();
|
|
|
|
$js->foo = new Foo();
|
|
|
|
$script = <<<END
|
|
|
|
var_dump(PHP.foo.unknownBar);
|
|
var_dump(PHP.foo.privBar);
|
|
var_dump(PHP.foo.protBar);
|
|
var_dump(PHP.foo.pubBar);
|
|
|
|
END;
|
|
|
|
$js->executeString($script);
|
|
?>
|
|
===EOF===
|
|
--EXPECT--
|
|
string(10) "unknownBar"
|
|
int(42)
|
|
string(7) "privBar"
|
|
int(42)
|
|
string(7) "protBar"
|
|
int(42)
|
|
string(6) "pubBar"
|
|
===EOF===
|