Blogger Information
Blog 18
fans 0
comment 0
visits 9934
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
流程控制实战与数组函数2018年8月23日作业
吕小布的博客
Original
598 people have browsed it
  1. 编程: 实例演示while(),do~while()


    实例

    <?php
    $i=0;
    while ($i<10){
        echo $i<9 ? $i.',' : $i;
        $i++;
    }
    
    echo '<hr>';
    
    $i=0;
    do{
        echo $i<9 ? $i.',' : $i;
        $i++;
    }while ($i<10);

    运行实例 »

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

    2. 编程: 函数的参数与作用域

实例

<?php

function hello($a,$b,$c)
{
    return ($a+$b+$c);
}
echo hello(1,2,3);

function nihao($a,$b='卧底')
{
    return('我'.$a.'一个'.$b);
}
echo nihao('其实是');


$nanme='作用域';
function yu()
{
    return $GLOBALS['$name'];
}
echo yu();

运行实例 »

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

  1. 3. 编程: 数组常用的键值操作与指针操作

实例

<?php

$user=['id'=>10,'name'=>'xiaobu','age'=>30];
//echo in_array('xiaobu',$user) ? '存在<br>' : '不存在<br>';
//echo array_key_exists('name',$user) ? '存在<br>' : '不存在<br>';
//print_r(array_values($user));
//print_r(array_keys($user));
$key=array_search(30,$user);
echo $user[$key];
print_r(array_flip($user));

//数组内部用法
echo count($user),'<br>';
echo key($user),'<br>';
echo current($user),'<hr>';
next($user);
echo key($user),'<br>';
echo current($user),'<hr>';
reset($user);
end($user);
reset($user);
while (list($key, $value) = each($user)) {
    echo $key , ' => ', $value, '<br>';
}

运行实例 »

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

4. 编程: 数组模拟栈与队列操作

实例

<?php

$user=['id'=>10,'name'=>'xiaobu','age'=>30];
array_push($user, 'php');
print_r($user);

array_shift($user);
print_r($user);

array_unshift($user, 'html');
print_r($user);

array_pop($user);
print_r($user);

运行实例 »

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

Correction status:qualified

Teacher's comments:第二个实例的16行代码中出现了中文的分号结尾哦
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