mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
23 lines
328 B
PHP
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
|