Blogger Information
Blog 14
fans 0
comment 0
visits 7856
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
作用域+变量类型检测+分支结构--2018年8月23号1点
Taoing的博客
Original
789 people have browsed it

什么是变量的作用域?

答:php只有函数作用域
为三种作用域: 

全局, 在函数之外创建的变量,可在函数外部直接使用

局部,函数内部创建的变量,仅限在函数内部使用

静态,函数内部创建,仅在内部使用并且函数执行后他的值不消失

超全局变量不受作用域限制

分支结构的实例

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">

<?php
//单分支
$num = 101;
if ($num>100)
    print ("输出值大于100");
//双分支
$num1=50;
$num2=34;
if ($num1==$num2)
    print ("$num1等于$num2");
if ($num1>$num2)
    print ("$num1大于$num2");
else
    print ("$num1小于$num2");
//3.多分支
$fenshu  = 85;
if ($grade < 60) {
    echo '<p style="color:red">很不幸,您得补考</p>';
} else if ($fenshu >= 60 && $fenshu < 80) {  // $grade >= 60
    echo '<p style="color:green">考得还不错</p>';
} else if ($fenshu >= 80 && $fenshu <= 100) {  // $grade >= 60
    echo '<p style="color:green">真TM的是个天才</p>';
}

运行实例 »

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


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
Author's latest blog post