Blogger Information
Blog 15
fans 0
comment 0
visits 9646
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php分支控制、函数和数组的基本操作2018年8月23日20时00分
Kenxc2011的博客
Original
643 people have browsed it

1、分支控制,while(),do~while()的区别。do~while()哪怕不满足条件也是运行一次,while()不满足条件是一次都不会运行。


实例

$i=10; //初始化条件
while($i<10) {
    echo $i<9 ? $i.',' : $i;
    $i++;  //更新条伯
}
echo '<hr>';

//do ~ while()
$i=10; //初始化条件
 do {
    echo $i<9 ? $i.',' : $i;
    $i++;  //更新条伯
} while($i<10);

运行实例 »

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

2、函数的参数与作用域


实例

$siteName = 'php中文网';
// php中只有函数作用域,函数外部声明的变量在函数内部不能直接使用,如果需要使用,就是要使用global ,或者$GLOBALS['siteName']
function hello ()
{
//    global $siteName;
    return $GLOBALS['siteName'];
}
echo hello();

运行实例 »

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

3、数组常用的键值操作与指针操作

实例

$user = ['id'=>5, 'name'=>'peter','gender'=>'male','age'=>20];

in_array();//判断数组中是否存在某个值
echo in_array('peter',$user) ? '存在<br>' : '不存在<br>';
array_key_exists():;//判断某个键名是否存在于数组中?
echo array_key_exists('salary',$user) ? '存在<br>' : '不存在<br>';
 array_values():;//以索引方式返回数组的值组成的数组
print_r(array_values($user));
 array_keys()
print_r(array_keys($user));
 array_search():;//以字符串的方式返回指定值的键
echo $user[array_search('peter',$user)];
//键值对调
print_r(array_flip($user));

运行实例 »

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

4、数组模拟栈与队列操作

实例

<?php
/**
 * 使用数组来模拟堆栈和队列操作
 */
$user = ['id'=>5, 'name'=>'peter','gender'=>'male'];
echo '<pre>',print_r($user,true);
echo '当前长度: '. count($user), '<br>';
 入栈:array_push()返回新数组的长度= count()
echo array_push($user, 'php中文网');
echo '当前长度: '. count($user), '<br>';
print_r($user);

echo array_pop($user),'<br>';
echo array_pop($user),'<br>';
echo array_pop($user),'<br>';
print_r($user);
//队: shift(),unshift()

//print_r($user);
echo array_shift($user),'<br>';
print_r($user);
//模拟队列操作: 增删只能在二端进行,不允许同一端进行
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: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