summaryrefslogtreecommitdiff
path: root/ext/ffi/tests/036.phpt
blob: 1e989285ff6796c6566a2bb163b1c7d7fd967185 (plain)
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
--TEST--
FFI 036: Type memory management
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--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)
}