我安装了 zephir OK (0.3.7a) 并运行测试,得到如下错误:
[root@vmlinux64 test]# zephir build PHP Warning: system() has been disabled for security reasons in /usr/local/lib64/zephir/Library/CompilerFile.php on line 107 PHP Warning: file_get_contents(.temp/0.3.7a /_root_test_test_Hello.zep.js):无法打开流:/usr/local/lib64/zephir/Library/CompilerFile.php 第 110 行 Zephir\Exception 中没有这样的文件或目录:无法解析文件:/root/test/test /你好.zep
我跑步没zephir help
问题。0.3.7a 。我喜欢这样:
$ zephir test
$ cd test/test/
$ vim Hello.zep
在Hello.zep
:
namespace Test;
class Hello
{
public function say()
{
echo "hello from test";
}
}
并保存它,然后去../
运行zephir build
错误弹出如上...
我在我的centOS6.5_x86_64上安装了lnmp-1.0-full,php版本是5.3.17。
提前致谢!