php-src/ext/ffi/tests/026.phpt
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

35 lines
428 B
PHP

--TEST--
FFI 026: Array iteration by reference
--EXTENSIONS--
ffi
--INI--
ffi.enable=1
--FILE--
<?php
$a = FFI::new("int[3]");
$a[1] = 10;
$a[2] = 20;
var_dump($a);
foreach ($a as &$val) {
$val->cdata += 5;
}
var_dump($a);
?>
--EXPECTF--
object(FFI\CData:int32_t[3])#%d (3) {
[0]=>
int(0)
[1]=>
int(10)
[2]=>
int(20)
}
object(FFI\CData:int32_t[3])#%d (3) {
[0]=>
int(5)
[1]=>
int(15)
[2]=>
int(25)
}