mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
bd9f4fa676
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
30 lines
648 B
PHP
30 lines
648 B
PHP
--TEST--
|
|
FFI 034: FFI::typeof(), FFI::sizeof(), FFI::alignof()
|
|
--EXTENSIONS--
|
|
ffi
|
|
--INI--
|
|
ffi.enable=1
|
|
--FILE--
|
|
<?php
|
|
$p1 = FFI::new("uint8_t[2]");
|
|
$p2 = FFI::new("uint16_t[2]");
|
|
$p3 = FFI::new("uint32_t[2]");
|
|
var_dump(FFI::sizeof($p1), FFI::sizeof($p2), FFI::sizeof($p3));
|
|
var_dump(FFI::alignof($p1), FFI::alignof($p2), FFI::alignof($p3));
|
|
var_dump(FFI::sizeof(FFI::typeof($p1)), FFI::sizeof(FFI::typeof($p2)), FFI::sizeof(FFI::typeof($p3)));
|
|
var_dump(FFI::alignof(FFI::typeof($p1)), FFI::alignof(FFI::typeof($p2)), FFI::alignof(FFI::typeof($p3)));
|
|
?>
|
|
--EXPECT--
|
|
int(2)
|
|
int(4)
|
|
int(8)
|
|
int(1)
|
|
int(2)
|
|
int(4)
|
|
int(2)
|
|
int(4)
|
|
int(8)
|
|
int(1)
|
|
int(2)
|
|
int(4)
|