我使用PHP和MySQL开发应用程序。尽管它们并不太复杂,但它们并非微不足道。作为一个例子,我编写了一个在线应用程序,使足球管理员能够管理玩家,竞争和司法程序。
另外,我使用Joomla为小型企业创建网站。
我希望能够将Joomla用作我的在线应用程序开发环境。有没有办法可以使用Joomla呢?
答案 0 :(得分:1)
是的。您需要像这样导入Joomla框架:
define('_JEXEC', 1);
define('JPATH_BASE', realpath(dirname(__FILE__)));
require_once ( JPATH_BASE .'/includes/defines.php' );
require_once ( JPATH_BASE .'/includes/framework.php' );
require_once ( JPATH_BASE .'/libraries/joomla/factory.php' );
$mainframe = JFactory::getApplication('site');
您可能需要根据已安装的Joomla网站的位置更改第2行