Search notes:

PHP code snippets: get_include_path()

The include path is a list of directories, separated by colons (:), that is used to find files that are included from PHP with functions like require_once().
The value of this include path can be determined with get_include_path()
<html>
<head><title>get_include_path</title></head>
<body>

<?php
    print("Include path is: " . get_include_path());
?>

</body>
Github repository about-php, path: /including-files/get_include_path.html

See also

Including files.
Other PHP snippets

Index