Blogger Information
Blog 16
fans 0
comment 2
visits 16224
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP变量的作用域 这个是非常重点的内容。
长沙php专家
Original
607 people have browsed it

老师在第一节课讲了,作用域是势力范围,看谁管的宽,功能就更强大。

调用.png

第一个是全局变量 globals  函数外创建使用

$siteName = '声明一个全局变量';

$GLOBALS['siteName'] = '声明一个全局变量';

function GVariable(){

global $siteName;

$NewFriend ='我是PHP中文网的学生';  //第二个是局部变量 无关键词 函数内声明使用

return '我今年21岁,'.$NewFriend.','.$GLOBALS['siteName'].',我打算用3个月精通PHP';

}

echo GVariable();

第三个是静态变量 static  函数中申明使用

function hello(){

static $number = 2;

return '第'.$number.'次输出'.$number++.',<br>';

}

echo '第一次执行完成后$number值'.hello().'<br>';

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