PHP 8.4.0 RC4 available for testing

外部函数接口

添加备注

用户贡献的备注 1 note

up
3
Nathaniel Sabanski
1 year ago
Quickstart from Rasmus Lerdorf's 25 years of PHP talk.

<?php
$ffi
= FFI::cdef(
"int printf(const char *format, ...);",
"libc.so.6");
$ffi->printf("Hello %s!\n", "world");
?>

Requires ffi.enable=1
To Top