Blogger Information
Blog 35
fans 0
comment 0
visits 32675
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量类型,与分支判断语句作业-2018-8-27
THPHP
Original
842 people have browsed it

创建 变量与访问 数据类型:

实例

// 创建 变量
    $string = 'php';
    $Int= 55;
    $Float = 20.5;
    $arr = [];
    $arr2;
// 查看数据类型
    echo gettype($string),'<br>'; // string 字符串类型
    echo gettype($Int),'<br>'; // integer  整数
    echo gettype($Float),'<br>'; // double 浮点数
    echo gettype($arr),'<br>'; // array 数组
    echo gettype($arr2),'<br>'; // NULL 空

运行实例 »

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

分支判断结构:

实例

// 单分支
if($Int < 60){
    echo '<span style="color:red">不及格啊,你要补考!</span>','<br>';
}
// 双分支
$Int1 = 65;
if($Int1 < 60){
    echo '<span style="color:red">不及格啊,你要补考!</span>';
}else if($Int1 > 60){
    echo '<span style="color:blueviolet">恭喜啊,及格了!</span>','<br>';
}
// 多分支
$Int2 = 98;
if($Int1 <= 50){
    echo '<span style="color:red">不及格啊,你要补考!</span>','<br>';
}else if($Int2 >= 60 && $Int2 <= 75){
    echo '<span style="color:blueviolet">恭喜啊,及格了!</span>','<br>';
} else if($Int2 >= 75 && $Int2 <= 100){
    echo '<span style="color:brown">恭喜啊你,很有才!</span>','<br>';
}

// weitch 判断语句
$Name = 'C';
switch (strtolower($Name)){
    case 'php';
        echo 'php语言是世界上最好的编程语言';
        break;
    case 'java';
        echo '应用广泛';
        break;
    case 'c';
        echo '黑客入门首选';
        break;
    default;  // 相当于 else 
        echo '好像没有了';
}

运行实例 »

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

什么是作用域:

IMG_20180827_084151.jpg

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