2014-11-29 20:30:44 +00:00
|
|
|
--TEST--
|
|
|
|
Test V8::executeString() : Export PHP properties on ArrayAccess objects
|
|
|
|
--SKIPIF--
|
|
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
|
|
--INI--
|
|
|
|
v8js.use_array_access = 1
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
|
|
|
|
class MyArray implements ArrayAccess, Countable {
|
|
|
|
private $data = Array('one', 'two', 'three');
|
|
|
|
|
|
|
|
private $privFoo = 23;
|
|
|
|
protected $protFoo = 23;
|
|
|
|
public $pubFoo = 42;
|
|
|
|
|
|
|
|
/* We can have a length property on the PHP object, but the length property
|
|
|
|
* of the JS object will still call count() method. Anyways it should be
|
|
|
|
* accessibly as $length. */
|
|
|
|
public $length = 42;
|
|
|
|
|
2022-05-23 07:41:57 +00:00
|
|
|
public function offsetExists($offset): bool {
|
2014-11-29 20:30:44 +00:00
|
|
|
return isset($this->data[$offset]);
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:41:57 +00:00
|
|
|
public function offsetGet($offset): mixed {
|
2014-11-29 20:30:44 +00:00
|
|
|
return $this->data[$offset];
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:41:57 +00:00
|
|
|
public function offsetSet($offset, $value): void {
|
2014-11-29 20:30:44 +00:00
|
|
|
echo "set[$offset] = $value\n";
|
|
|
|
$this->data[$offset] = $value;
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:41:57 +00:00
|
|
|
public function offsetUnset($offset): void {
|
2014-11-29 20:30:44 +00:00
|
|
|
throw new Exception('Not implemented');
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:41:57 +00:00
|
|
|
public function count(): int {
|
2014-11-29 20:30:44 +00:00
|
|
|
return count($this->data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$v8 = new V8Js();
|
|
|
|
$v8->myarr = new MyArray();
|
|
|
|
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.privFoo);');
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.protFoo);');
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.pubFoo);');
|
|
|
|
|
|
|
|
/* This should call count(), i.e. return 3 */
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.length);');
|
|
|
|
|
|
|
|
/* This should print the value of the $length property */
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.$length);');
|
|
|
|
|
|
|
|
?>
|
|
|
|
===EOF===
|
|
|
|
--EXPECT--
|
|
|
|
NULL
|
|
|
|
NULL
|
|
|
|
int(42)
|
|
|
|
int(3)
|
|
|
|
int(42)
|
|
|
|
===EOF===
|