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

search for in the

set_include_path> <putenv
Last updated: Fri, 18 Jul 2008

view this page in

restore_include_path

(PHP 4 >= 4.3.0, PHP 5)

restore_include_path — Ripristina il valore dell'opzione include_path

Descrizione

void restore_include_path ( void )

Ripristina il valore del parametro di configurazione include_path al valore impostato in php.ini

Example #1 Esempio di uso di restore_include_path()

<?php

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

set_include_path('/inc');

echo 
get_include_path();  // /inc

// A partire da PHP 4.3.0
restore_include_path();

// In tutte le versioni di PHP
ini_restore('include_path');

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

?>

Vedere anche ini_restore(), set_include_path(), get_include_path() e include().



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, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites