Home php教程 php手册 PHP 预定义超全局数组/变量

PHP 预定义超全局数组/变量

Jun 06, 2016 pm 07:36 PM
php overall situation variable statement definition array

1、超 全局 变量 :不用定义声明即可用。PHP有九种 2、$_GET:通过参数传递给当前脚本的 变量 的 数组 浏览器页面--(http协议)-apache--php module--a.php(封装成$_GET)静态页面返回 例子: 发送页面1: ? php $str = urlencode ("北京好"); // 编码 urld

1、超全局变量:不用定义声明即可用。PHP有九种

2、$_GET:通过参数传递给当前脚本的变量数组

  浏览器页面-->(http协议)->apache-->php module-->a.php(封装成$_GET)静态页面返回

  例子:

     发送页面1:

 <span>php

     </span><span>$str</span>=<span>urlencode</span>("北京好");<span>//</span><span>编码  urldecode则是解码已编码的URL字符串
    // echo "<a href="a.php?city=%E5%8C%97%E4%BA%AC%E5%A5%BD%20&name=%E5%B0%8F%E6%98%8E">";//两个中文没问题,三个中文在IE5/IE6就会出现问题(可多加个空格/urlencode )</a></span>
    <span>echo</span> "<a href="a.php?city=%22<span>%24str</span>%22%20&name=%E5%B0%8F%E6%98%8E">"<span>;
  </span>?></a>
Copy after login

     接收页面2:

<span>php<br>
  </span><span>echo</span> "<pre class="brush:php;toolbar:false">"<span>;
  </span><span>echo</span> <span>print_r</span>(<span>$_GET</span><span>);
  </span><span>echo</span> "
Copy after login
";
echo $_GET['name']; //也可以通过下标名取得某个数
?>

   (1  推荐表单提交用POST!(安全性/     数据量大(浏览器限制GET)/     但是保存到收藏夹:get方便)

   (2  可以通过 if( empty( $_GET['city'] )  ){} 判断接收的$_GET中的数据是否存在

   (3  注意: php.ini  中的 register_globals=on; 不能更改!!!

3、$_POST : 通过HTTP  POST 的方式提交的数据,会封装到$_POST 

   (1  自动封装/URL编码

   (2  $name=$_POST['username'];  //获得表单提交的数据

   (3  1111

          2222

                  // 一般默认只接受Checkbox的最后一个数据,采用数组的形式可以保证获取接受多个数据
                  // 接收页面可以用foreach来循环便利

4、$_REQUEST  可以接收 $_GET/$_POST/$_COOKIE 数组的数据信息

   print_r($_REQUEST); 

   如果不确定是POST还是GET方式

  可以采用 if($_SERVER['REQUEST_METHOD']=="POST"){}

                 else if($_SERVER['REQUEST_METHOD']=="GET"){}

5、$_SERVER 客户端浏览器信息+服务器端本身的信息

6、$_ENV 环境变量全局数组 php5.3中默认禁用,但可以启动

    php.ini 中的 variables_order="EGPCS";

 7、$GLOBALS 包含了全部变量全局组合数组

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles