| // +----------------------------------------------------------------------+ // // $Id$ /** * Replace constant DIRECTORY_SEPARATOR * * @category PHP * @package PHP_Compat * @link http://php.net/reserved.constants.standard * @author Aidan Lister * @version $Revision$ * @since PHP 4.0.6 */ if (!defined('DIRECTORY_SEPARATOR')) { define('DIRECTORY_SEPARATOR', strtoupper(substr(PHP_OS, 0, 3) == 'WIN') ? '\\' : '/' ); } ?>