6.30.15 get_include_path()
Lit la valeur de la directive de configuration include_path
[ Exemples avec get_include_path ] PHP 4 >= 4.3.0, PHP 5
string
get_include_path (
)
get_include_path
lit la valeur de la directive
de configuration include_path .
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'); ?>
|
Voir aussi
ini_get
,
restore_include_path
,
set_include_path
et
include
.
|