ext-php-rs/example/skel/test.php
David b6b4974236
Added ability to call functions given from PHP (#18)
* Added ability to call functions given from PHP

* Return an `Option` rather than a `Result`
2021-04-02 18:02:55 +13:00

10 lines
193 B
PHP

<?php
$x = new TestClass();
var_dump($x->call(function ($v1, $v2) {
// var_dump($v1, $v2);
// echo "Hello, world! I'm a callable.".PHP_EOL;
// return "Ok rust";
return 0;
}));