get_include_path — 現在の include_path 構成オプションを取得します
文字列 get_include_path (void)
set_include_path — include_path 構成オプションを設定します
string set_include_path ( string $new_include_path )
まず、set_include_path 関数は、スクリプト内の PHP.ini の include_path を動的に変更します。
この include_path は、以下の include および require パスの範囲に限定することも、事前に定義することもできます。
それは次のようなものです:
この値を設定しない場合は、完全なパスをいくつか記述する必要がある場合があります:
[php]
include("123/test1.php");
include("123/test2.php");
include("123/test3.php");
require("123/test4.php")
require("123/test5.php");
?>
include("123/test1.php");
include("123/test2.php");
include("123/test3.php");
require("123/test5.php");
??>
多くの外部ファイルを導入しますが、set_include_path("123/") を設定すると、代わりに次のコードを使用できます。
[php]
set_include_path("123/");
include("test1.php");
include("test2.php");
include("test3.php");
require("test4.php")
?>
set_include_path("123/");
include("test1.php");
include("test2.php");
include("test3.php");
require("test4.php");
require("test5.php");
?> この関数は 1 つのフォルダーを定義するだけでなく、多数のフォルダーを定義することもできます。以下に示すように、初期化関数を書きたいと思います:
[php]
set_include_path(get_include_path().PATH_SEPARATOR . "core/");
set_include_path(get_include_path().PATH_SEPARATOR . "app/");
set_include_path(get_include_path().PATH_SEPARATOR . "admin/");
set_include_path(get_include_path().PATH_SEPARATOR . "lib/");
set_include_path(get_include_path().PATH_SEPARATOR . "include/");
set_include_path(get_include_path().PATH_SEPARATOR."data/");
set_include_path(get_include_path().PATH_SEPARATOR."キャッシュ/");
関数initialize()
{
set_include_path(get_include_path().PATH_SEPARATOR . "core/");
set_include_path(get_include_path().PATH_SEPARATOR . "app/");
set_include_path(get_include_path().PATH_SEPARATOR . "admin/");
set_include_path(get_include_path().PATH_SEPARATOR . "lib/");
set_include_path(get_include_path().PATH_SEPARATOR . "include/");
set_include_path(get_include_path().PATH_SEPARATOR."data/");
set_include_path(get_include_path().PATH_SEPARATOR."cache/");
したがって、そのパスは次のようになります:
.;C:php5pear;core/;app/;admin/;lib/;include/;data/;cache/
[php]
$include_path=get_include_path();
$include_path.=PATH_SEPARATOR."include/" ;
$include_path.=PATH_SEPARATOR."クラス/";
$include_path.=PATH_SEPARATOR."libs/";
// $include_path をエコーします
//インクルードファイルが存在するすべてのディレクトリを設定します
set_include_path($include_path);
関数 __autoload($className)
{
//エコー 'クラス'.$className
;
strto lower($className).".class.php" を含めます
}
$Smarty = 新しいスマーティ
?>
$include_path=get_include_path();
$include_path.=PATH_SEPARATOR."include/" ;
$include_path.=PATH_SEPARATOR."classs/";
$include_path.=PATH_SEPARATOR."libs/";
//インクルードファイルが配置されているすべてのディレクトリを設定します
set_include_path($include_path);
関数 __autoload($className)
{
//エコー 'クラス'.$className;
include strto lower($className).".class.php";
}
?>
include_path として複数のディレクトリが指定されており、インクルードする必要があるファイルがこれらのディレクトリ内に同じ名前のファイルを持つ場合、PHP は include_path が設定されているときに最もランクの高いディレクトリ内のファイルを使用することを選択します。
この方法で新しいものを直接プルできます!!
true