Forum und email

get_include_path

(PHP 4 >= 4.3.0, PHP 5)

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.

Example#1 Exemplo get_include_path()

<?php
// Funciona a partir do PHP 4.3.0
echo get_include_path();

// Funciona em todas as versões do PHP
echo ini_get('include_path');
?>

Veja também ini_get(), restore_include_path(), set_include_path() e include().