get_include_path
PHP function
Edit on GitHub ✎
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
Gets the current include_path configuration option
Description
get_include_path(): string|false
Gets the current include_path configuration option value.
Parameters Parameters
Return Values
Returns the path, as a string, Falseforfailure.
Examples
get_include_path() example
php
<?php
echo get_include_path();
// Or using ini_get()
echo ini_get('include_path');
?>