asmblah/uniter

get_class_methods is not implemented

Opened this issue · 0 comments

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()