firstw/php-extension-export

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

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/firstw/php-extension-export

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

This package is auto-updated.

Last update: 2025-12-08 20:34:37 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();
}