-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy patharray_access_002.phpt
66 lines (54 loc) · 1.67 KB
/
array_access_002.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--TEST--
Test V8::executeString() : Use ArrayAccess with JavaScript native push method
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--INI--
v8js.use_array_access = 1
--FILE--
<?php
#[AllowDynamicProperties]
class MyArray implements ArrayAccess, Countable {
private $data = Array('one', 'two', 'three');
// V8 versions on alpine are known to call the setter twice. As a work-around we set a
// flag here and print only once, so we don't fail the test because of that.
private $setterCalled = false;
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 {
if ($this->setterCalled) {
return;
}
echo "set[$offset] = $value\n";
$this->data[$offset] = $value;
$this->setterCalled = true;
}
public function offsetUnset(mixed $offset): void {
throw new Exception('Not implemented');
}
public function count(): int {
return count($this->data);
}
}
$v8 = new V8Js();
$v8->myarr = new MyArray();
/* Call native JavaScript push method, this should cause a count
* offsetSet call. */
$v8->executeString('PHP.myarr.push(23);');
/* Access array from PHP side, should work if JavaScript called
* the write accessor functions. */
var_dump(count($v8->myarr));
var_dump($v8->myarr[3]);
/* And JS side of course should see it too. */
$v8->executeString('var_dump(PHP.myarr.join(","));');
?>
===EOF===
--EXPECT--
set[3] = 23
int(4)
int(23)
string(16) "one,two,three,23"
===EOF===