Home >Backend Development >PHP Tutorial >ThinkPHP加载非Orf目录下的类库

ThinkPHP加载非Orf目录下的类库

WBOY
WBOYOriginal
2016-06-06 20:15:22975browse

OneThink是基于ThinkPHP 3.X开发的开发框架,支持插件。
我的问题是,如何把类库放在插件目录,而不是系统自带的Org目录下,因为希望插件的安装足够简单。

回复内容:

OneThink是基于ThinkPHP 3.X开发的开发框架,支持插件。
我的问题是,如何把类库放在插件目录,而不是系统自带的Org目录下,因为希望插件的安装足够简单。

我把第三方类库全部放在vendor 目录下,这了是thinkphp推荐的,
vendor('Snoopy/Snoopy'); 加载

好吗,是我没有看清,你问的是onethink ,大不了用include 加载吗

类似如下

<code>if(!defined('DS')) {
    define('DS',DIRECTORY_SEPARATOR);
}

if(!defined('FETCHURL_DIR')) {
    define('FETCHURL_DIR',dirname(__FILE__).DS);
}

//include_once FETCHURL_DIR.'Snoopy.php';
include_once FETCHURL_DIR.'simple_html_dom.php';
include_once FETCHURL_DIR.'library'.DS.'Requests.php';</code>

自己查看了很多OneThink插件,发现了解决的方案
namespace Addons/类名

Statement:
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