php-8.0.30-src/ext/standard/tests/general_functions/get_include_path_basic.phpt

24 lines
328 B
PHP

--TEST--
Test get_include_path() function
--INI--
include_path=.
--FILE--
<?php
echo "*** Testing get_include_path()\n";
var_dump(get_include_path());
if (ini_get("include_path") == get_include_path()) {
echo "PASSED\n";
} else {
echo "FAILED\n";
}
?>
--EXPECT--
*** Testing get_include_path()
string(1) "."
PASSED