0

我目前有 PHP 5.4 设置,我们可以用它安装 Zend 1.11 还是我们需要去 Zend 2(还没有遇到过在 WAMP 上解释 Zend 2 设置的体面教程)

我尝试安装 1.11,但在使用 zf CLI 时出现错误

***************************** ZF ERROR ********************************
In order to run the zf command, you need to ensure that Zend Framework
is inside your include_path.  There are a variety of ways that you can
ensure that this zf command line tool knows where the Zend Framework
library is on your system, but not all of them can be described here.
4

1 回答 1

0

您完全可以使用 PHP 5.4 运行 Zend Framework 1.11。

您得到的错误是因为您试图在命令行中使用“zf”,但 PHP 找不到 Zend 框架的加载位置。为了解决这个问题,include_path在您的 php.ini 文件中找到该指令,并更新路径以包含您安装 Zend 框架的位置。

完成此操作后不要忘记重新启动您的网络服务器!

于 2012-08-28T05:17:53.397 回答