firstw/php-extension-export

a simple library to export php extension library 's function, method or class and function, method,property inside a class

v1.0 2020-01-08 07:39 UTC

This package is auto-updated.

Last update: 2024-06-08 17:21:23 UTC


README

export php extension to php file

How to use

require "../vendor/autoload.php";
try {
    FirstW\Export\Extension::dump('swoole', './swoole/');
} catch (Exception $e) {
    echo 'fail:'.$e->getMessage();
}