Home > php教程 > php手册 > php中$

php中$

WBOY
Release: 2016-06-06 19:57:30
Original
1756 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php中的$_ENV存储了一些系统的环境变量,因环境不同而值不同. 但有时候$_ENV是空的,可能有以下原因: 在php.ini中的variables_order值为“GPCS”,也就是说系统在定义PHP预定义变量时的顺序是GET,POST,C

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    php中的$_ENV存储了一些系统的环境变量,因环境不同而值不同.

    但有时候$_ENV是空的,可能有以下原因:

    在php.ini中的variables_order值为“GPCS”,也就是说系统在定义PHP预定义变量时的顺序是GET,POST,COOKIES,SERVER,没有定义Environment(E),你可以修改php.ini文件的variables_order值为你想要的顺序,如:“EGPCS”.这时,$_ENV的值就可以取得了

    EGPCS值(EGPCS是Environment、Get、Post、Cookies、Server的缩写 -- 这是PHP中外部变量来源的全部范围).

php中$

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template