Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

--TEST--
Function -- get_include_path
--SKIPIF--
<?php if (function_exists('get_include_path')) { echo 'skip'; } ?>
--FILE--
<?php
require_once 'PHP/Compat.php';
PHP_Compat::loadFunction('get_include_path');

if (get_include_path() == ini_get('include_path')) {
    echo 'true';
}
?>
--EXPECT--
true