php 文件路径设置 set_include_path(); get_include_path();

set_include_path($string);设置路径

get_include_path(); 获取当前的路径

例如:文件路径为:
D:/phpweb/demo/test.php

test.php内容为:

<?php

echo "hi";

?>

D:/phpweb/index.php

index.php内容为:

<?php

set_include_path(get_include_path();dirname(__FILE__)."/demo/");

require_once("test.php");

?>

 用;分格目录

这样就可以调用test.php文件里面的内容了

php 文件路径设置 set_include_path(); get_include_path();

上一篇:jQuery实用的语法总结


下一篇:ExtJs4实战流量统计系统----系统概述&UI界面(一)