Blogger Information
Blog 3
fans 0
comment 0
visits 1958
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP开发之基本语法 - 第五期线上班
Freeflight的博客
Original
609 people have browsed it
  1. php环境搭建

    1553418943442525.jpg


  2. 创建变量与常量

     

     

  3. 实例

    <?php
    
    $a = '我是变量';  //创建变量
    
    define ("A","我是常量");  //创建常量
    
    echo $a."<br>";
    
    echo A;
    
    
    ?>

    运行实例 »

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

  4. 创建索引数组与关联数组


  5. 实例

    <?php
    
    
    $arr=array("老刘","男","18");
    print_r($arr);
    echo "<br>";
    var_dump($arr);
    //创建索引数组
    echo "<hr>";
    
    $arr=array("apple"=>"苹果","sex"=>"水果");
    
    print_r($arr);
    echo "<br>";
    //创建关联数组
    
    
    ?>

    运行实例 »

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

  6. 注释:

    单行注释://

    多行注释:/*      */  

  7. 字符串连接符、数字运算符


  8. 实例

    <?php
    
    $a = "我是一个";
    $b = "好***";
    echo $a.$b;
    echo "<br>";
    
    $a = "我是一个";
    $a.= "好人";
    echo $a;
    
    //字符串连接符
    
    echo "<hr>";
    $a="999";
    $b="333";
    $c=$b/$a;
    echo $c;
    
    //数字运算符
    
    
    ?>

    运行实例 »

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

  9. 创建不同的数据类型


  10. 实例

    <?php 
    $a = "hello  word!";  //字符串
    $b=1;// 整型
    $c=1.2;//浮點型
    $d=true;//布爾型
    
    $e = null;//空
    
    echo "$a,$b,$c,$d,$e";
    echo "<hr>";
    
    var_dump($a,$b,$c,$d,$e);
    
    ?>

    运行实例 »

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

  11. 循环语句: for / while / do while / foreach


  12. 实例

    <?php
    
    for($a = 20;$a >=10 ;$a--){
    	
    	echo $a."\n,\n";
    	
    	};
    	
    echo "<hr>";
    
    for ($b=20; ;$b--)
    {
    	if($b<10){
    		break;
    		
    		};
    	echo "$b"."\n";
    	};
    	
    	//for循环
    	echo "<hr>";
    $c=20;
    while($c>=10){
    	echo $c;
    	$c--;
    	};	
    //while 循环
    
    echo "<hr>";
    
    $d=20;
    do{
    	echo $d."<br>";
    	$d++;
    	} 
    	while($d<30);
    //do while 循环
    
    echo "<hr>";
    $e=array(
        "one" => 1,
        "two" => 2,
        "three" => 3,);
    foreach($e as $k=>$v){
    	echo "$k=>$v"."<br>";
    	};
    	//foreach循环
    ?>

    运行实例 »

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

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