GET_INCLUDE_PATH(3) 1 GET_INCLUDE_PATH(3)
get_include_path - Gets the current include_path configuration option
SYNOPSIS
string get_include_path (void )
DESCRIPTION
Gets the current include_path configuration option value.
RETURN VALUES
Returns the path, as a string.
EXAMPLES
Example #1
get_include_path(3) example
<?php
// Works as of PHP 4.3.0
echo get_include_path();
// Works in all PHP versions
echo ini_get('include_path');
?>
SEE ALSO
ini_get(3), restore_include_path(3), set_include_path(3), include(3).
PHP Documentation Group GET_INCLUDE_PATH(3)