在我的 php 文件中使用 Joomla 类
我有一个 joomla 网站,需要一个生成 xml 的 php 脚本在其中运行。该文件由我的模块调用。该模块工作正常,但我无法创建一个输出代码的 php 文件,主要是因为我无法使用诸如 $db =& 之类的东西。 JFactory::getDBO();
有人有这方面的经验吗?
I have a joomla site and need an xml generating php script to run within it. The file is called by my module. The module works ok but I cannot get to create a php file that outputs the code, primarily because I can't use things like$db =& JFactory::getDBO();
Anyone with an experience on this front?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在调用 joomla 框架之外的文件,那么您需要创建 joomla 应用程序的实例,以便代码可以访问 joomla。
这应该能让您了解基础知识。
If you are calling a file that is outside of the joomla framework, then you need to create an instance of the joomla application so the code has access to joomla.
This should give you access to the basics.