php-src/ext/standard/tests/general_functions/get_include_path_basic.phpt
2020-06-24 13:13:44 +02:00

23 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