PHP 8.5.0 Alpha 4 available for testing

Voting

: max(eight, nine)?
(Example: nine)

The Note You're Voting On

Nathaniel Sabanski
2 years 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

<< Back to user notes page

To Top