eval ( "/> eval ( ">

linux环境安装了lua,但是php中class_exists判断为false,请问我该如何排查?

WBOY
Release: 2016-06-02 11:28:26
Original
929 people have browsed it

luaphp

<code>出错的代码如下,class_exists("Lua",false)为false,我在linux下输入lua,能够调用lua,请问我该如何进一步排查:public function getTableData($tableName) {    $gameTable = array();    if (class_exists("Lua",false)) {        $lua = new Lua ();        $lua->eval ( </code>
Copy after login

CODE
);

<code>        $tablePath = GAME_LUA_PATH . "clientData/?.lua;";        $tablePath .= GAME_LUA_PATH . "serverData/?.lua;";        $gameTable = $lua->getTable ( $tablePath, $tableName );    }else {        exit("lua has not been installed");    }    return $gameTable;}</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!