来自 Rasmus Lerdorf 的 25 年 PHP 演讲的快速入门。
<?php
$ffi = FFI::cdef(
"int printf(const char *format, ...);",
"libc.so.6");
$ffi->printf("Hello %s!\n", "world");
?>
需要 ffi.enable=1
来自 Rasmus Lerdorf 的 25 年 PHP 演讲的快速入门。
<?php
$ffi = FFI::cdef(
"int printf(const char *format, ...);",
"libc.so.6");
$ffi->printf("Hello %s!\n", "world");
?>
需要 ffi.enable=1