Home > php教程 > php手册 > body text

如何在直接引入的php文件中使用Joomla的类库

WBOY
Release: 2016-06-06 19:51:02
Original
1023 people have browsed it

如果在Joomla中直接引入一个第三方模板库,该模板库中存在若干php文件,比如存在: http://yourhost.com/templates/yourtemplate/web.php 在默认的url重写规则情况下,直接访问该文件或者使用ajax直接load该文件,将绕开Joomla的初始化。 那么要在该文件中使

如果在Joomla中直接引入一个第三方模板库,该模板库中存在若干php文件,比如存在:

http://yourhost.com/templates/yourtemplate/web.php

在默认的url重写规则情况下,直接访问该文件或者使用ajax直接load该文件,将绕开Joomla的初始化。

那么要在该文件中使用Joomla的类,比如系统文件操作类,则需要自己做一些简单的初始化工作,示例代码如下:

<?php define('_JEXEC', 1);
	define('DS', DIRECTORY_SEPARATOR);			
	define('JPATH_BASE', dirname(dirname(dirname(__FILE__))));
	require_once JPATH_BASE.'/includes/defines.php';
	require_once JPATH_BASE.'/includes/framework.php';
	jimport('joomla.filesystem.folder');
	jimport('joomla.filesystem.file');
?>
Copy after login

然后在你的php文件中就可以使用JFile了,比如:
$files = JFolder::files(JPATH_BASE.'/images/gallery/web/', '\.jpg$', false, false, array('logo.jpg'));
Copy after login

iefreer
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template