get_include_path
(PHP 4 >= 4.3.0, PHP 5)
get_include_path — Lit la valeur de la directive de configuration include_path
Description
string get_include_path
( void
)
Lit la valeur de la directive de configuration include_path.
Valeurs de retour
Retourne le chemin, sous la forme d'une chaîne de caractères.
Exemples
Example#1 Exemple avec get_include_path()
<?php
// Fonctionne depuis PHP 4.3.0
echo get_include_path();
// Fonctionne sur toutes les versions
echo ini_get('include_path');
?>