clab/php/heavy_stuff_c.php
2025-01-08 23:36:15 +00:00

13 lines
240 B
PHP

<?php
$ffi = FFI::cdef("
unsigned long some_heavy_stuff(int lima, int limb);",
"./heavy_stuff.so"
);
echo "Hello, also heavy stuff here:\n";
$result = $ffi->some_heavy_stuff(1000,100000);
echo "The heavy result: $result\n";
?>