mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 15:48:40 +00:00
58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
--TEST--
|
|
Test V8::executeString() : Delete (unset) ArrayAccess keys
|
|
--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');
|
|
|
|
public function offsetExists($offset) {
|
|
return isset($this->data[$offset]);
|
|
}
|
|
|
|
public function offsetGet($offset) {
|
|
if(!$this->offsetExists($offset)) {
|
|
return null;
|
|
}
|
|
return $this->data[$offset];
|
|
}
|
|
|
|
public function offsetSet($offset, $value) {
|
|
$this->data[$offset] = $value;
|
|
}
|
|
|
|
public function offsetUnset($offset) {
|
|
unset($this->data[$offset]);
|
|
}
|
|
|
|
public function count() {
|
|
return max(array_keys($this->data)) + 1;
|
|
}
|
|
}
|
|
|
|
$v8 = new V8Js();
|
|
$v8->myarr = new MyArray();
|
|
|
|
$js = <<<EOF
|
|
var jsarr = [ "one", "two", "three" ];
|
|
delete jsarr[1];
|
|
var_dump(jsarr.join(","));
|
|
|
|
delete PHP.myarr[1];
|
|
var_dump(PHP.myarr.join(","));
|
|
|
|
EOF;
|
|
|
|
$v8->executeString($js);
|
|
|
|
?>
|
|
===EOF===
|
|
--EXPECT--
|
|
string(10) "one,,three"
|
|
string(10) "one,,three"
|
|
===EOF===
|