Blogger Information
Blog 27
fans 1
comment 2
visits 25179
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量的作用域: 全局,局部,静态
一枝黄花
Original
898 people have browsed it

PHP 变量的作用域: 全局,局部,静态

效果预览图

微信截图_20180416144152.png

代码如下:

实例

<?php
echo'<h3>变量的作用域</h3>';
echo'<hr color="red">';
$siteName='香香公主的博客';//局部
// 函数:是脚本中具有特定功能的代码段,可以重复调用

// 基本语法:
// 1.声明 function funcname(arg) {#code....}
// 2.表达式 $funcname=function(args){ #code...}
// 调用:按明调用 funcName(args)

function hello()
{
	$userName='香香';
	return '欢迎来到'.$GLOBALS['siteName'].',我是:'.$userName;
}
echo hello();
echo '<hr>';

// 静态变量
function myStatic()
{
	$num=1;
	return '第'.$num.'次输出'.$num++.'<br>';
}
echo myStatic();
echo myStatic();
echo myStatic();
echo myStatic();
echo myStatic();
echo myStatic();
echo '<hr color="blue">';


echo '我的姓名是:'.$_GET['name'];
echo '<hr>';
//在函数中引用超全局变量
function sayName()
{
	return'我的姓名是:'.$_GET['name'];
}
echo sayName();
// 超全局变量是系统预定义的,在用户创建的每一个php文件中,都是会自动春节,不用用户手工去创建。

运行实例 »

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


Correction status:qualified

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