1
1
--TEST--
2
2
Test V8::executeString() : Use ArrayAccess with JavaScript native push method
3
3
--SKIPIF--
4
- <?php require_once (dirname (__FILE__ ) . '/skipif.inc ' );
5
-
6
- if (str_starts_with (V8Js::V8_VERSION , '11.3.244.8 ' )) {
7
- die ("skip V8 version known to call setter twice " );
8
- }
9
-
10
- ?>
4
+ <?php require_once (dirname (__FILE__ ) . '/skipif.inc ' ); ?>
11
5
--INI--
12
6
v8js.use_array_access = 1
13
7
--FILE--
@@ -16,6 +10,10 @@ v8js.use_array_access = 1
16
10
class MyArray implements ArrayAccess, Countable {
17
11
private $ data = Array ('one ' , 'two ' , 'three ' );
18
12
13
+ // V8 versions on alpine are known to call the setter twice. As a work-around we set a
14
+ // flag here and print only once, so we don't fail the test because of that.
15
+ private $ setterCalled = false ;
16
+
19
17
public function offsetExists ($ offset ): bool {
20
18
return isset ($ this ->data [$ offset ]);
21
19
}
@@ -25,8 +23,13 @@ class MyArray implements ArrayAccess, Countable {
25
23
}
26
24
27
25
public function offsetSet (mixed $ offset , mixed $ value ): void {
26
+ if ($ this ->setterCalled ) {
27
+ return ;
28
+ }
29
+
28
30
echo "set[ $ offset] = $ value \n" ;
29
31
$ this ->data [$ offset ] = $ value ;
32
+ $ this ->setterCalled = true ;
30
33
}
31
34
32
35
public function offsetUnset (mixed $ offset ): void {
0 commit comments