restore_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

restore_include_pathinclude_path 設定オプションの値を元に戻す

説明

restore_include_path ( void ) : void

include_path 設定値を php.ini でセットされたオリジナルの設定に戻します。

返り値

値を返しません。

例1 restore_include_path() の例

<?php

echo get_include_path();  // .:/usr/local/lib/php

set_include_path('/inc');

echo 
get_include_path();  // /inc

restore_include_path();

// または ini_restore を使用します
ini_restore('include_path');

echo 
get_include_path();  // .:/usr/local/lib/php

?>

参考