如何从控制器获取值

发布于 2024-12-06 02:23:47 字数 301 浏览 0 评论 0原文

我正在尝试打印你好世界。
为此,我在模型文件夹中创建了类和返回函数,返回值为“hello world”。
在控制器中,我从模块中获取值,如下所示:


    $value = new getValue();
    $this->view->index = $value->hello_world();
    
I don't know how to get the values from controllers and print into views php folder.

I am trying to print hello world.
For that i created class and return function in models folder, and the returning value is "hello world".
In controller, i am getting the values from module like this:


    $value = new getValue();
    $this->view->index = $value->hello_world();
    

I don't know how to get the values from controllers and print into views php folder.

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

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

发布评论

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

评论(2

潇烟暮雨 2024-12-13 02:23:47

事实上,当您执行此操作时,您将“Hello world”字符串放入控制器视图的变量“index”中 $this->view->index = $value->hello_world();.

因此,如果您的 $value->hello_world(); 函数正确返回一个“Hello world”字符串,为了将其打印到控制器的视图中,您只需添加此 php 代码 将 $this->index; 回显到您的视图文件中。

In fac, you put "Hello world" string into the variable "index" of the controller's view when your are doing this $this->view->index = $value->hello_world();.

So, if your $value->hello_world(); function correctly return an "Hello world" string, for print it into the controller's view, you just have to do add this php code echo $this->index; into your view file.

朱染 2024-12-13 02:23:47

我真的认为你应该首先阅读教程。仅仅通过立即开始编码来尝试弄清楚 Zend Framework 的工作原理可能相当困难。

I really think you should read a tutorial first of all. It can be quite hard to try to figure out how Zend Framework works just by starting to code right away.

  • The Quick Start guide suggested by @palmplam should be fine.
  • In addition, I found the Rob Allen's tutorial really useful when I started using Zend Framework. It contains plenty of sample code.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文