Zend Framework 快速入门教程和版本 1.8.2 的问题
我正在尝试完成 Zend Framework 版本 1.8.2 的快速入门教程,但运行此代码时出现错误:
zf.sh create project quickstart
error: expecting `'{'' in /Users/andrew/Sites/_library/ZendFramework-1.8.2/library/Zend/Tool/Framework/Client/Console.php on line 63
我在 Mac OS X 10.4 上执行此操作。 Zend工具有错误吗? 或者我做错了什么? 或者我的环境没有正确设置来运行这个脚本?
我在另一台计算机上尝试了这个,
-bash: zf.sh: command not found
我认为这是一个单独的问题,但不知道该怎么做
I'm trying to work through the quick start tutorial of the Zend Framework version 1.8.2, but I'm getting an error when running this code:
zf.sh create project quickstart
error: expecting `'{'' in /Users/andrew/Sites/_library/ZendFramework-1.8.2/library/Zend/Tool/Framework/Client/Console.php on line 63
I'm doing this on Mac OS X 10.4. Is there an error in Zend Tool? or am I doing something wrong? Or is my environment not set up correctly to run this script?
I tried this on my other computer and got
-bash: zf.sh: command not found
I think this one is a separate problem, but not sure what to do
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决第二个问题:
或者将其放置到 /usr/bin (或者其他可执行文件所在的位置,不知道它在 OS X 中的位置)
或使用
第一个问题:
您使用哪个 PHP 版本? 问题可能存在于多接口实现上。
to the second problem:
or place it to /usr/bin (or where the other executables lives, don't know where it is in OS X)
or use
first problem:
which PHP version do you use? The problem exists maybe at multi interface implementation.
您仍然可以像 Zend_Tool 那样手动创建文件夹结构,快速入门指南确实提供了命名约定的示例,并且还有许多其他示例。 为了更好地理解框架,手动执行此操作可能会很好,因为您被迫考虑您创建的文件以及它们的使用方式。
you can still manually create the folder structure that Zend_Tool does, the quickstart guide does give examples of the naming conventions and there are numerous other examples. in order to better understand the framework, doing this manually can be good since your forced to think about the files your creating and how they are used.