1. include_path 的意義
其原理和 Windows 系統的環境變量相似,在 Windows 運行 cmd 命令的時候,輸入一些 cmd 命令之後,系統就會在其設定的環境變量裡面去搜索這些命令是否存在,存在就可以執行…
2. include_path的設置
第一種方法:
修改 php.ini 文件中的 include_path 項。
include_path = .:/usr/local/lib/php:./include
第二種方法:
使用 ini_set 方法。
ini_set("include_path", ".:../:./include:../include");
例如:
zendframework include 設置 index.php
set_include_path('.' .PATH_SEPARATOR.'../library/'
.PATH_SEPARATOR.'./application/models/'
.PATH_SEPARATOR.'./application/lib/'
.PATH_SEPARATOR.get_include_path());
PATH_SEPARATOR 是一個常量,在 Linux 系統中是一個" : "號,Windows 上是一個" ; "號。
所以編寫程序時最好用常量 PATH_SEPARATOR 代替,否則如果系統從 Linux 移植到 Windows 系統或反過來移植均會出錯!
get_include_path 取得當前已有的環境變量,加上前面的設置就是新的系統 include
set_include_path 就是設置 php 的包含文件路徑,相當是操作系統的環境變量
<Show start>
【操作】
<Show end>
<?php
// Works as of PHP 4.3.0
set_include_path('/inc');
// Works in all PHP versions
ini_set('include_path', '/inc');
?>
// Works as of PHP 4.3.0
set_include_path('/inc');
// Works in all PHP versions
ini_set('include_path', '/inc');
?>
沒有留言:
張貼留言