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