php-src/ext/ffi/tests/036.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

29 lines
476 B
PHP

--TEST--
FFI 036: Type memory management
--EXTENSIONS--
ffi
--INI--
ffi.enable=1
--FILE--
<?php
$type = FFI::type("int*");
function foo($ptr) {
global $type;
//$buf = FFI::new("int*[1]"); /* this loses type and crash */
$buf = FFI::new(FFI::arrayType($type, [1]));
$buf[0] = $ptr;
//...
return $buf[0];
}
$int = FFI::new("int");
$int->cdata = 42;
var_dump(foo(FFI::addr($int)));
?>
--EXPECTF--
object(FFI\CData:int32_t*)#%d (1) {
[0]=>
int(42)
}