mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 12:38:41 +00:00
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
--TEST--
|
|
Test V8::executeString() : Export PHP methods 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');
|
|
|
|
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 {
|
|
echo "set[$offset] = $value\n";
|
|
$this->data[$offset] = $value;
|
|
}
|
|
|
|
public function offsetUnset(mixed $offset): void {
|
|
throw new Exception('Not implemented');
|
|
}
|
|
|
|
public function count(): int {
|
|
echo 'count() = ', count($this->data), "\n";
|
|
return count($this->data);
|
|
}
|
|
|
|
public function phpSidePush($value) {
|
|
echo "push << $value\n";
|
|
$this->data[] = $value;
|
|
}
|
|
|
|
public function push($value) {
|
|
echo "php-side-push << $value\n";
|
|
$this->data[] = $value;
|
|
}
|
|
}
|
|
|
|
$v8 = new V8Js();
|
|
$v8->myarr = new MyArray();
|
|
|
|
/* Call PHP method to modify the array. */
|
|
$v8->executeString('PHP.myarr.phpSidePush(23);');
|
|
|
|
var_dump(count($v8->myarr));
|
|
var_dump($v8->myarr[3]);
|
|
|
|
/* And JS should see the changes due to live binding. */
|
|
$v8->executeString('var_dump(PHP.myarr.join(","));');
|
|
|
|
|
|
/* Call `push' method, this should trigger the PHP method. */
|
|
$v8->executeString('PHP.myarr.push(42);');
|
|
|
|
var_dump(count($v8->myarr));
|
|
var_dump($v8->myarr[4]);
|
|
|
|
/* And JS should see the changes due to live binding. */
|
|
$v8->executeString('var_dump(PHP.myarr.join(","));');
|
|
|
|
?>
|
|
===EOF===
|
|
--EXPECT--
|
|
push << 23
|
|
count() = 4
|
|
int(4)
|
|
int(23)
|
|
count() = 4
|
|
string(16) "one,two,three,23"
|
|
php-side-push << 42
|
|
count() = 5
|
|
int(5)
|
|
int(42)
|
|
count() = 5
|
|
string(19) "one,two,three,23,42"
|
|
===EOF===
|