如何在 config.xml zend 框架中设置基本 url
如何在 config.xml 中设置基本 url?我正在使用 Zend 框架。
我的索引文件有以下调用:
$config = new Zend_Config_Xml($strDirectoryNameConfig . '/default/config.xml', 'config', true);
这是我现有的 config.xml:
<server>
<installationfolder>C:/xampp/htdocs/myapp/</installationfolder>
<basefolder>/</basefolder>
<session>
<lifetime>86400</lifetime>
</session>
</server>
How can I set base url in config.xml?. I'm using Zend Framework.
My index file has this following call:
$config = new Zend_Config_Xml($strDirectoryNameConfig . '/default/config.xml', 'config', true);
And this is my existing config.xml:
<server>
<installationfolder>C:/xampp/htdocs/myapp/</installationfolder>
<basefolder>/</basefolder>
<session>
<lifetime>86400</lifetime>
</session>
</server>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这完全取决于您想在哪里使用此配置。我真的不明白或不明白你喜欢在哪里使用这个 Zend Config 对象。
基本 url 是您必须在控制器请求对象中设置的内容。设置基本 url 的最通用方法是这样的
如果您提供有关您的配置的更多信息,那么您肯定会有其他选项和答案。
It all depends where you want to use this config. I don't really see or understand where you like to use this Zend Config object.
The base url is something you have to set in the controller request object. The most general way to set the base url is like this
If you provide more information about your config then you will have certainly other options and answers.