php
php
表
php
;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note
; The separator used in PHP generated URLs
to separate arguments
; Default is
;arg_separator
; List of separator(s) used by PHP to parse
input URLs into variables
; Default is
; NOTE: Every character in this directive is
considered as separator!
;arg_separator
; This directive describes the order in which
PHP registers GET
; Environment and Built
E & S respectively
; referred to as EGPCS or GPC)
is done from left to right
; values override older values
variables_order =
; Whether or not to register the EGPCS variables
as global variables
; want to turn this off if you don
clutter your scripts
; with user data
coupled with track_vars
; case you can access all of the GPC variables
through the $HTTP_*_VARS[]
; variables
;
; You should do your best to write your scripts
so that they do not require
; register_globals to be on; Using form
variables as globals can easily lead
; to possible security problems
is not very well thought of
register_globals = Off
; Whether or not to register the old
input arrays
; and friends
it
; for performance reasons
register_long_arrays = Off
在以上代碼中
修改過的配置
當PHP作為Apache的模塊運行時
表
通過ini_set()方法
int_set(
PHP設置了
表
返回目錄
編輯推薦
Java Web開發詳解
ASP
ASP
ASP
From:http://tw.wingwit.com/Article/program/PHP/201311/21621.html