| // +----------------------------------------------------------------------+ // // $Id: get_include_path.php,v 1.1 2005/07/23 05:56:03 Tony Exp $ /** * Replace get_include_path() * * @category PHP * @package PHP_Compat * @link http://php.net/function.get_include_path * @author Stephan Schmidt * @version $Revision: 1.1 $ * @since PHP 4.3.0 * @require PHP 4.0.0 */ if (!function_exists('get_include_path')) { function get_include_path() { return ini_get('include_path'); } } ?>