Home  >  Article  >  Backend Development  >  get_include_path()是什么意思?该如何处理

get_include_path()是什么意思?该如何处理

WBOY
WBOYOriginal
2016-06-13 10:34:331123browse

get_include_path()是什么意思?
这段代码 set_include_path(INCLUDE_PATH . PATH_SEPARATOR . get_include_path());

我百度了下说是可以对include和require的路径范围进行限定
但是我echo get_include_path(); 输出的是F:\AppServ\www\iwb/application/;.;C:\php5\pear
后面的;.;C:\php5\pear算是什么啊?

------解决方案--------------------
paer是PHP的库,这个库提供了很多现成的封装对象,类似Javascript的JQuery。当你要使用这个库时,就可以把库文件放在C:\php5\pear,而不用放在网站目录里。
------解决方案--------------------
get_include_path 函数返回当前 php 的搜索路径(通常就是 php.ini 中的 include_path)

当没有另外设置 include_path 时, php 默认 include_path 为 .;C:\php5\pear(window系统中)

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