Blogger Information
Blog 31
fans 0
comment 2
visits 27552
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量的作用域: 全局,局部,静态
钱光照的博客
Original
846 people have browsed it

*

 * 变量作用域只有三个:

 * 1.全局:函数之外创建,仅在当前脚本除函数之外的地方使用;

 * 2.局部:函数内部创建,仅能在函数中使用,外部不可访问;

 * 3.静态:函数内部创建,仅在函数中使用,函数执行完成它的值不丢失;

 附:* 函数:是脚本中具有特定功能的代码段,可以重复调用

        * 1.基本语法:

        *   1.1 函数声明: function funcName($args){ #code...}

        *   1.2 函数表达式: $funcName = function ($args){ #code...}

        * 2.调用:

        *   2.1 按名调用: funcName($args) / $funcName($args)

        *   2.2 自调用: 声明与调用同时完成

        *       (function (args){ #code...})()

/*

 * 4超全局变量:$_SERVER,$_COOKIE,$_SESSION,$_GET,$_POST,$_REQUEST

 * 4.1. 属预定义变量,全部是数组,拿来就用,不需要声明;

 * 4.2. 跨作用域,在全局和局部(函数内部)都可以直接使用;

 * 4.3. 跨作用域不是跨脚本,所谓超全局,包括全局,都是指在当前脚本文件中。

 */

实例

<?php

//测试$GLOBALS的用法
function test() {
    $foo = "函数内变量";
    echo '$foo in global scope: ' . $GLOBALS["foo"] .nl2br("\n") ;
    echo '$foo in current scope: ' . $foo . "\n";
}
$foo = "函数外变量";
test();
//测试$GLOBALS的用法
echo "<hr>";

$siteName = 'PHP中文网';       //全局变量
$GLOBALS['siteName']='PHP中文网';   //全局变量替代语法
$userName1='钱光照';
function hello()
{
  global $userName1;//引用全局变量,使用全局变量数组,不必声明引入
  $siteName='www.php.cn';
  $userName = 'Peter Zhu';    //局部变量
  echo '欢迎来到'.$siteName.',我是:'.$userName1;
  echo "<hr>";
  echo '欢迎来到'.$GLOBALS['siteName'].',我是:'.$userName;
}

hello(); 

/医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院*/

echo '<hr color="red">';
function myStatic()
{
  static $num = 1;     //静态变量,必须且仅能在函数中声明和使用
  return '第'.$num.'次输出'.$num++.'<br>';
}

echo '执行完成后$num值:'.myStatic().'<br>';
echo '执行完成后$num值:'.myStatic().'<br>';
echo '执行完成后$num值:'.myStatic().'<br>';
echo '执行完成后$num值:'.myStatic().'<br>';  

/医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院医院/

echo '<hr color="blue">';
echo '我的姓名是:'.$_GET['name'];  //可以在全局直接引用
echo '<hr>';

function sayName()
{
 return '我的姓名是:'.$_GET['name'];//也可以在函数中直接引用,超全局变量不需要使用关键字global进行声明
}

echo sayName();

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post