2014-11-29 12:25:01 +00:00
|
|
|
--TEST--
|
|
|
|
Test V8::executeString() : Check ArrayAccess live binding
|
|
|
|
--SKIPIF--
|
|
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
|
|
--INI--
|
|
|
|
v8js.use_array_access = 1
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
if (PHP_VERSION_ID < 80000) {
|
|
|
|
class MyArray implements ArrayAccess, Countable {
|
|
|
|
private $data = Array('one', 'two', 'three');
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function offsetExists($offset) {
|
|
|
|
return isset($this->data[$offset]);
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function offsetGet($offset) {
|
|
|
|
return $this->data[$offset];
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function offsetSet($offset, $value) {
|
|
|
|
$this->data[$offset] = $value;
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function offsetUnset($offset) {
|
|
|
|
throw new Exception('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function count() {
|
|
|
|
return count($this->data);
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function push($value) {
|
|
|
|
$this->data[] = $value;
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
}
|
2022-05-27 02:47:44 +00:00
|
|
|
} else {
|
|
|
|
class MyArray implements ArrayAccess, Countable {
|
|
|
|
private $data = Array('one', 'two', 'three');
|
|
|
|
|
|
|
|
public function offsetExists($offset): bool {
|
|
|
|
return isset($this->data[$offset]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetGet(mixed $offset): mixed {
|
|
|
|
return $this->data[$offset];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetSet(mixed $offset, mixed $value): void {
|
|
|
|
$this->data[$offset] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetUnset(mixed $offset): void {
|
|
|
|
throw new Exception('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function count(): int {
|
|
|
|
return count($this->data);
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
|
2022-05-27 02:47:44 +00:00
|
|
|
public function push($value) {
|
|
|
|
$this->data[] = $value;
|
|
|
|
}
|
2014-11-29 12:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$v8 = new V8Js();
|
|
|
|
$v8->myarr = new MyArray();
|
|
|
|
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.join(","));');
|
|
|
|
|
|
|
|
/* array is "live bound", i.e. new elements just pop up on js side. */
|
|
|
|
$v8->myarr->push('new');
|
|
|
|
$v8->executeString('var_dump(PHP.myarr.join(","));');
|
|
|
|
|
|
|
|
?>
|
|
|
|
===EOF===
|
|
|
|
--EXPECT--
|
|
|
|
string(13) "one,two,three"
|
|
|
|
string(17) "one,two,three,new"
|
|
|
|
===EOF===
|