通过会话从 ZEND 页面传递变量到 PHP 本机页面
您认为是否可以从 Zend 会话将变量传递到 php 本机页面会话? 这两个页面位于同一域的同一服务器上,因为我不想通过网址发送变量。 谢谢!!
Do you think is it possible from a Zend session to pass a variabiles to a php native page session?
The 2 pages are on the same server on the same domain, because I don't want to send the variables through the url.
Thx!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Zend 框架基本会话使用文档中,它指出:
In the Zend framework documentation for basic session usage it states that:
在我的经典 php 中,我总是这样写:
并进入第二页:
一切正常。
现在进入 zend 页面(如果我理解的话)我应该写:
但是在第二个 php 本机页面中?
有点困惑……抱歉,谢谢。
附:当然,在引导程序中有
Zend_Session::start()
In my classic php I always wrote:
and into the second page:
and everything works fine.
Now into the zend page (if I understood) I should write:
but in the second php native page?
Bit confused... sorry and thank you.
ps. In the bootstrap of course there is the
Zend_Session::start()