Zend Framework 快速入门教程和版本 1.8.2 的问题

发布于 2024-07-23 09:52:06 字数 446 浏览 8 评论 0原文

我正在尝试完成 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

超可爱的懒熊 2024-07-30 09:52:06

解决第二个问题:

$ chmod +x zf.sh

或者将其放置到 /usr/bin (或者其他可执行文件所在的位置,不知道它在 OS X 中的位置)
或使用

$ sh ./zf.sh

第一个问题:
您使用哪个 PHP 版本? 问题可能存在于多接口实现上。

to the second problem:

$ chmod +x zf.sh

or place it to /usr/bin (or where the other executables lives, don't know where it is in OS X)
or use

$ sh ./zf.sh

first problem:
which PHP version do you use? The problem exists maybe at multi interface implementation.

假情假意假温柔 2024-07-30 09:52:06

您仍然可以像 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文