Joomla组件开发中导入PHP代码
无法弄清楚如何将 php 文件导入到我的 joomla 组件中 - 所有这些都失败了:
- require_once('code.php');
- require_once(dirname(FILE).DS.'code.php');
- require_once(JPATH_COMPONENT.DS.'code.php');
有什么想法吗?谢谢
Can't figure out how to import php files into my joomla component- all of these fail:
- require_once('code.php');
- require_once(dirname(FILE).DS.'code.php');
- require_once(JPATH_COMPONENT.DS.'code.php' );
Any ideas? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
require_once(JPATH_COMPONENT_SITE.'/path/inside/your/component/folder.php');
另外 - 不要使用 DS - 它在 Joomla 3.0 中已弃用
require_once(JPATH_COMPONENT_SITE.'/path/inside/your/component/folder.php');
Also - don't use DS - it is deprecated in Joomla 3.0
尝试 jimport,请参阅 Joomla 的文档:http://docs.joomla.org/Jimport
这将包括php 文件“/libraries/joomla/application/component/controller.php”。
Try jimport, see Joomla's docs on this: http://docs.joomla.org/Jimport
This will include the php file "/libraries/joomla/application/component/controller.php".
通常这些包含在 helper.php 文件中
Usually these are included in a helper.php file