get_include_path()是什么意思?该如何处理
程序员文章站
2024-02-15 21:08:53
...
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系统中)
这段代码 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系统中)
相关文章
相关视频
上一篇: 高手,对这个网有什么修改建议
推荐阅读
-
php 递归函数 求解,该如何处理
-
get_include_path()是什么意思?该如何处理
-
求研究discuz x3 源码分析顺序,该如何处理
-
拆分合并Sql语句字符串,该如何处理
-
【百度分享】MySQL 5.1分区技术初探(六),该如何处理
-
HTML Parsing Error: Unable to modify the parent container element before the chi,该如何处理
-
判断图片文件结尾,补全.jpg, .jpeg, .png or .gif,该如何处理
-
Call to undefined function mysql_connect(),该如何处理
-
在服务器上搭的环境,smarty报错,该如何处理
-
求高手,模拟浏览器抓取网页,该如何处理