(PHP 4 >= 4.3.0, PHP 5, PHP 7)
restore_include_path — include_path yönergesini eski değerine ayarlar
Bu işlevin kullanımı PHP 7.4.0 itibariyle ÖNERİLMEMEKTE olup PHP 8.0.0'da tamamen KALDIRILMIŞTIR. Bu işleve kesinlikle güvenilmemelidir.
include_path yönergesinin çalışma anı değerini tekrar php.ini dosyasında belirtilen değerine ayarlar.
Bu işlevin bağımsız değişkeni yoktur.
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
restore_include_path();
// veya ini_restore() kullanarak
ini_restore('include_path');
echo get_include_path(); // .:/usr/local/lib/php
?>