我如何让 zend 框架说“hello world”?在浏览器中?

发布于 2024-12-14 13:31:52 字数 493 浏览 0 评论 0原文

我完成了 http://framework.zend 中的一些步骤。 com/manual/en/learning.quickstart.create-project.html 并让它工作到如果我在浏览器中键入“localhost”,我就会到达 Zend 服务器测试页面。

我有使用 xampp 和 php 的经验(最近决定开始为我的一些客户作品使用框架),在 xampp 中,我在文件夹“htdocs”下创建所有测试页面,然后只需键入“localhost/mysites/test.php” 。我不知道该怎么做。

在我开始实际使用 Zend 框架的所有 MVC 内容之前,我必须知道在哪里保存所有 php 文件,现在我只想通过 zend 简单地显示“hello world”,这样我就知道保存在哪里文件以及在浏览器中输入的地址。

I finished some of the steps in http://framework.zend.com/manual/en/learning.quickstart.create-project.html and got it to work to the point where if I type 'localhost' in my browser, I arrive at the Zend server test page.

I have experience using xampp and php (decided recently to start using a framework for some of my client works) and in xampp i create all of my test pages under the folder 'htdocs' and simply type 'localhost/mysites/test.php'. I have no idea how to do that.

Before I get into actually using all of the MVC stuff the Zend framework is about, I have to know where to save all of my php files and for now I just want to simply display 'hello world' via zend so I know where to save files and what address to type in the browser.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

痴骨ら 2024-12-21 13:31:52

这个问题不是很清楚。无论如何,我假设您已经以正确的方式创建了您的项目。要在浏览器中打印“hello world”,请进行以下一些更改:

IndexController.php 中,在 indexAction() 方法中写入:

$this->view->String = 'hello world';

现在进入 index.phtml在 view/scripts/index 下创建文件并写入(如果删除其中看到的所有行会更好):

<?php echo $this->String; ?>

现在,在浏览器本地主机的地址栏中输入,您应该能够看到“hello world”。希望这有帮助。

This question is not very clear. Anyway, I assume that you've created in the right way your project. To print 'hello world' in your browser, do this little change:

In the IndexController.php, inside the indexAction() method write:

$this->view->String = 'hello world';

Now go in the index.phtml file under view/scripts/index and write (better if you delete all the lines you see in it):

<?php echo $this->String; ?>

Now, typing in the address bar of your browser localhost, you should be able to see 'hello world'. Hope this helps.

晌融 2024-12-21 13:31:52

请检查 Zend Framework 安装或 Hello世界 Zend 框架。本指南指导我们如何安装 Zend Frame Work 以及其中附带的正确屏幕截图。

Please check Zend Framework Installation or Hello world Zend Framework. This guide us how to install Zend Frame Work along with proper screen shots attached in it.

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