0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-11-08 17:48:41 +00:00
phpv8/tests/array_access_001.phpt

53 lines
1.1 KiB
Plaintext
Raw Normal View History

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
class MyArray implements ArrayAccess, Countable {
private $data = Array('one', 'two', 'three');
2022-05-23 07:41:57 +00:00
public function offsetExists($offset): bool {
2014-11-29 12:25:01 +00:00
return isset($this->data[$offset]);
}
2022-05-23 07:41:57 +00:00
public function offsetGet($offset): mixed {
2014-11-29 12:25:01 +00:00
return $this->data[$offset];
}
2022-05-23 07:41:57 +00:00
public function offsetSet($offset, $value): void {
2014-11-29 12:25:01 +00:00
$this->data[$offset] = $value;
}
2022-05-23 07:41:57 +00:00
public function offsetUnset($offset): void {
2014-11-29 12:25:01 +00:00
throw new Exception('Not implemented');
}
2022-05-23 07:41:57 +00:00
public function count(): int {
2014-11-29 12:25:01 +00:00
return count($this->data);
}
public function push($value) {
$this->data[] = $value;
}
}
$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===