downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

set_include_path> <putenv
Last updated: Fri, 13 Nov 2009

view this page in

restore_include_path

(PHP 4 >= 4.3.0, PHP 5)

restore_include_pathinclude_path yönergesini eski değerine ayarlar

Açıklama

void restore_include_path ( void )

include_path yönergesinin çalışma anı değerini tekrar php.ini dosyasında belirtilen değerine ayarlar.

Dönen Değerler

Hiçbir değer dönmez.

Örnekler

Ö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

?>

Ayrıca Bakınız



add a note add a note User Contributed Notes
restore_include_path
There are no user contributed notes for this page.

set_include_path> <putenv
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites