uniter
uniter copied to clipboard
get_class_methods is not implemented
var php = require('uniter').createEngine('PHP');
php.getStdout().on('data', function (text) { console.log(text); });
php.getStderr().on('data', function (text) { console.error(text); });
php.execute('<?php print get_class_methods();');
PHP Fatal error: Call to undefined function get_class_methods()