get_include_path
(PHP 4 >= 4.3.0)
get_include_path --
Obtém a opção de configuração include_path atual
Descrição
string
get_include_path ( void )
Obtém o valor atual da opção de configuração
include_path.
Exemplo 1. Exemplo get_include_path()
<?php // Funciona a partir do PHP 4.3.0 print get_include_path();
// Funciona em todas as versões do PHP print ini_get('include_path'); ?>
|
|
Veja também ini_get(),
restore_include_path(),
set_include_path() e
include().