phpcompat.php
Upload User: ah_jiwei
Upload Date: 2022-07-24
Package Size: 54044k
Code Size: 0k
Category:

ADO-ODBC

Development Platform:

Visual C++

  1. <?php
  2. if ( !isset( $_SERVER ) ) {
  3.     $_SERVER = $HTTP_SERVER_VARS ;
  4. }
  5. if ( !isset( $_GET ) ) {
  6.     $_GET = $HTTP_GET_VARS ;
  7. }
  8. if ( !isset( $_FILES ) ) {
  9.     $_FILES = $HTTP_POST_FILES ;
  10. }
  11. if ( !defined( 'DIRECTORY_SEPARATOR' ) ) {
  12.     define( 'DIRECTORY_SEPARATOR',
  13.         strtoupper(substr(PHP_OS, 0, 3) == 'WIN') ? '\' : '/'
  14.     ) ;
  15. }