mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-11-27 04:24:54 +01:00
626c944218
* Fixed memory leak with `phpinfo()` table * Added `#[php_extern]` macro
11 lines
155 B
PHP
11 lines
155 B
PHP
<?php
|
|
|
|
include __DIR__.'/vendor/autoload.php';
|
|
|
|
function test_func() {
|
|
return "Hello wqorld";
|
|
}
|
|
|
|
// var_dump(hello_world(5));
|
|
var_dump(test_extern());
|