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

search for in the

set_include_path> <putenv
[edit] Last updated: Thu, 23 May 2013

view this page in

restore_include_path

(PHP 4 >= 4.3.0, PHP 5)

restore_include_pathRestaura o valor da opção de configuração include_path

Descrição

void restore_include_path ( void )

Restaura a opção de configuração include_path de volta para o seu valor principal definido no php.ini

Valor Retornado

Não há valor retornado.

Exemplos

Exemplo #1 Exemplo restore_include_path()

<?php
echo get_include_path();  // .:/usr/local/lib/php
set_include_path('/inc');
echo 
get_include_path();  // /inc
// Funciona a partir do PHP 4.3.0
restore_include_path();
// Funciona em todas as versões do PHP
ini_restore('include_path');
echo 
get_include_path();  // .:/usr/local/lib/phpp
?>

Veja Também



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

 
show source | credits | sitemap | contact | advertising | mirror sites