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