Zend 框架代码

发布于 2024-09-01 19:15:59 字数 134 浏览 7 评论 0原文

下面的代码是做什么用的?(在 Zend Framework 中) 我的意思是这些人的工作是什么?

$this->view->default
$this->view->action

what is below codes for?(in Zend Framework)
i mean what is the job of these?

$this->view->default
$this->view->action

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

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

发布评论

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

评论(1

无法回应 2024-09-08 19:15:59

这个问题可能对你有帮助:
Zend Framework Resources

您问题中的代码用于将对象路径到视图中,在您的你做的控制器:

$this->view->aStringPassedToView = 'foo';

然后在你的视图脚本中你可以回显像这样传递的数据:

echo $this->aStringPassedToView; // prints 'foo'

this question might help you:
Zend Framework Resources

the code you have in your questions is used to path an object to the view, in your controller you do:

$this->view->aStringPassedToView = 'foo';

and then in your view script you could for example echo the data that got passed like this:

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