1--TEST--
2Test get_include_path() function
3--INI--
4include_path=.
5--FILE--
6<?php
7
8
9echo "*** Testing get_include_path()\n";
10
11var_dump(get_include_path());
12
13if (ini_get("include_path") == get_include_path()) {
14    echo "PASSED\n";
15} else {
16    echo "FAILED\n";
17}
18
19?>
20--EXPECT--
21*** Testing get_include_path()
22string(1) "."
23PASSED
24