home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / include.inc < prev    next >
Encoding:
Text File  |  2004-03-24  |  347 b   |  17 lines

  1. <?php
  2.  
  3. error_reporting(E_ALL);
  4.  
  5. if (!defined('PATH_SEPARATOR')) {
  6.     if (stristr(PHP_OS, 'WIN')) {
  7.         define('PATH_SEPARATOR', ';');
  8.     } else {
  9.         define('PATH_SEPARATOR', ':');
  10.     }
  11. }
  12. ini_set('include_path', realpath(dirname(__FILE__) . '/..')
  13.         . PATH_SEPARATOR . '.' . PATH_SEPARATOR
  14.         . ini_get('include_path'));
  15.  
  16. ?>
  17.