(PHP 4 >= 4.3.0, PHP 5, PHP 7)
restore_include_path — include_path yönergesini eski değerine ayarlar
include_path yönergesinin çalışma anı değerini tekrar php.ini dosyasında belirtilen değerine ayarlar.
Hiçbir değer dönmez.
Örnek 1 - restore_include_path() örneği
<?php
echo get_include_path(); // .:/usr/local/lib/php
set_include_path('/inc');
echo get_include_path(); // /inc
// PHP 4.3.0 ve sonrasında çalışır
restore_include_path();
// Bütün PHP sürümlerinde çalışır
ini_restore('include_path');
echo get_include_path(); // .:/usr/local/lib/php
?>