PHP Velho Oeste 2024

Foreign Function Interface

add a note add a note

User Contributed Notes 1 note

up
5
Nathaniel Sabanski
10 months 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