当前位置: 首页 > 图文教程 > 网络编程 > PHP > global.php

PHP
使用 PHP 和 Oracle 开发企业应用程序
可扩展 可伸缩的 Oracle 与 PHP
Andi Gutmans看 PHP 5、Oracle 的未来
PEAR版本号说明
PEAR的安装
PHP 新手总结的 PHP 基础知识
WAP 与 PHP 程序设计之基础篇
PHP强制对象类型之instanceof操作符(1)
PHP强制对象类型之instanceof操作符(2)
PHP强制对象类型之instanceof操作符(3)
Linux平台wacom产品使用指南
一个嵌入式Linux系统的键盘驱动实现 (1)(2)
一个嵌入式Linux系统的键盘驱动实现 (1)
SWT的可视化控件的X11窗口句柄简介
Linux系统内核中的Device Mapper机制 (1)(5)
Linux系统内核中的Device Mapper机制 (1)(4)
Linux系统内核中的Device Mapper机制 (1)(3)
Linux系统内核中的Device Mapper机制 (1)(2)
Linux系统内核中的Device Mapper机制 (1)
又一关于apache和mysql组合的问题 - PHPchina

PHP 中的 global.php


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 214 ::
收藏到网摘: n/a

<?php
/**
* 自动判断PHP版本,并把所有环境变量转为全局变量
*
* @author Avenger <[email protected]>
* @version $Id 2003-05-18 13:01:14 $
*/
function pmyoutput(&$a) {
if (is_array($a)) {
array_walk($a,'pmyoutput');
} else {
$a = stripslashes($a);
$a = str_replace('"', '"', $a);
}
}
function pmyinput(&$a) {
if (is_array($a)) {
array_walk($a,'pmyinput');
} else {
$a = addslashes($a);
}
}
/*
if (phpversion() < '4.1.0') {
isset($HTTP_SESSION_VARS) ? $GLOBALS['_SESSION'] = &$HTTP_SESSION_VARS : '';
isset($HTTP_SERVER_VARS) ? $GLOBALS['_SERVER'] = &$HTTP_SERVER_VARS : '';
isset($HTTP_ENV_VARS) ? $GLOBALS['_ENV'] = &$HTTP_ENV_VARS : '';
isset($HTTP_FILES_VARS) ? $GLOBALS['_FILES'] = &$HTTP_FILES_VARS : '';
if (get_magic_quotes_gpc() == 1) {
isset($HTTP_GET_VARS) ? $GLOBALS['_GET'] = &$HTTP_GET_VARS : '';
isset($HTTP_POST_VARS) ? $GLOBALS['_POST'] = &$HTTP_POST_VARS : '';
isset($HTTP_COOKIE_VARS) ? $GLOBALS['_COOKIE'] = &$HTTP_COOKIE_VARS : '';
} else {
isset($HTTP_GET_VARS) ? pmyinput($HTTP_GET_VARS) : '';
isset($HTTP_POST_VARS) ? pmyinput($HTTP_POST_VARS) : '';
isset($HTTP_COOKIE_VARS) ? pmyinput($HTTP_COOKIE_VARS) : '';
$GLOBALS['_GET'] = &$HTTP_GET_VARS;
$GLOBALS['_POST'] = &$HTTP_POST_VARS;
$GLOBALS['_COOKIE'] = &$HTTP_COOKIE_VARS;
}
$GLOBALS['_REQUEST'] = array_merge($_GET, $_POST, $_COOKIE);
} else {
if (get_magic_quotes_gpc() != 1) {
isset($_GET) ? pmyinput($_GET) : '';
isset($_POST) ? pmyinput($_POST) : '';
isset($_COOKIE) ? pmyinput($_COOKIE) : '';
isset($_REQUEST) ? pmyinput($_REQUEST) : '';
}
}
*/
?>