php-src/ext/ffi/tests/026.phpt
Dmitry Stogov 6738241aec Avoid usage of internal get/set object handlers. They are going to be removed in PHP-8.
Scalar FFI values now should be accessed through special "cdata" property.

    $x = FFI::new("int");
    $x = 42;

    should be changed into

    $x = FFI::new("int");
    $x->cdata = 42;
2019-05-28 17:08:35 +03:00

35 lines
454 B
PHP

--TEST--
FFI 026: Array iteration by reference
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--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)
}