Blogger Information
Blog 11
fans 0
comment 0
visits 6507
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP学习之变量相关(8月22日作业)-2018年8月27日
碎笺的博客
Original
577 people have browsed it

1.php变量作用域

变量的作用域是脚本中变量可被引用/使用的范围,共有四种

local

global

static

paramter

全局作用域和局部作用域

在所有函数外部定义的变量,拥有全局作用域global;在函数内部定义的变量用于局部作用域local。全局变量可以被脚本的任何位置访问,但在函数内部访问全局变量要使用global关键字。而局部变量只能在函数内部进行访问。

// 变量类型:
$a = '这是一段字符串';//字符串
$b = 123456; //这是一段数值
$c = ['php','china','website']; //这是一个数组
$d = ""; //空值
$f = true; // 布尔值
$file = fopen('test.txt','r') or die('打开失败');// 资源类型


//分支结构

//单分支
$ac = 6;

if ($ac<8)
{
    echo "你的雅 思分数不适合留学申请";
}


//双分支
$ab = 8;
if ($ab<8)
{
    echo"禁止留学申请";
}else
{
    echo"符合留学申请标准";
}

//三元运算
$k = 8;
echo ($k>8)?"可以留学":"禁止留学";



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