一.准备及介绍
1、本文介绍:PHP的if、switch、do while、for goto、函数定义、留言本练习。
2、环境准备:phpStudy安装:点我进入官方下载。
二.操作过程
1、if,判断语句,与else一起使用:
<?php
$dida = rand(0,1); //声明一个随机(rand)变量dida,值为0—1。
if($dida){
$didaOne = rand(0,1);
if ($didaOne){ echo '1';}
else{ echo '0';}
}else { $dida0 = rand(0, 1);
if ($dida0)
echo '111'; //若只有一行,可省略{}
else
echo '000';
}?>
2、 switch,用于根据多个不同条件执行不同动作。 :
<?php
$tool = rand(1, 3); //声明一个随机(rand)变量tool,值为0—3。switch($tool) {
case 1: echo '司机开车'; break;
case 2: echo '民航'; break;
case 3: echo '自己家的专机'; break;
}?>
3、do while(不管是否满足条件,都会先执行一次)、for(循环) goto(强制跳转)、函数(实现某个功能,代码方便管理):
<?php
$one = rand(0,1);
do { //do
echo $one;echo '<br>';
goto hello; //goto到hello
} while ($one > 0);
hello: //goto需要跳转到的标记名。
echo 'hello';echo '<br>';
chfb(); //调用chfb(函数)
function chfb() //定义chfb函数并写入功能代码
{
for ($i=1;$i<=9;$i++){ //for
for ($j=1;$j<=$i;$j++){
echo $i.'X'.$j.'='.$i*$j; echo ' ';
if ($i==$j) echo '<br>';
}}}?>
4、留言本练习。
index.php://实现留言本,并显示留言过的消息
<?Php//设置时区 date_default_timezone_set('PRC'); //读了内容 @$string = file_get_contents('message.txt'); //如果$string 不为空的时候执行,也就是message.txt中有留言数据 if (!empty($string)) { //每一段留言有一个分格符,但是最后多出了一个&^。因此,我们要将&^删掉 $string = rtrim($string, '&^'); //以&^切成数组 $arr = explode('&^', $string); //将留言内容读取 foreach ($arr as $value) { //将用户名和内容分开 list($username, $content, $time) = explode('$#', $value); echo '用户名为<font color="gree">' . $username . '</font>内容为<font color="red">' . $content . '</font>时间为' . date('Y-m-d H:i:s', $time); echo '<hr />'; } } ?> <h1>基于文件的留言本演示</h1> <form action="write.php" method="post"> 用户名:<input type="text" name="username" /><br /> 留言内容:<textarea name="content"></textarea><br /> <input type="submit" value="提交" /> </form> ?>
Write.php://获取信息后保存文件
<?php
//追加方式打开文件
$fp=fopen('message.txt','a');
//设置时间
$time=time();
//使用外部变量POST得到用户名
$username=trim($_POST['username']);
// 使用外部变量POST 得到内容
$content=trim($_POST['content']);
//组合写入的字符串:内容和用户之间分开,使用$#。 行与行之间分开,使用&^
$string=$username.'$#'.$content.'$#'.$time.'&^';
//写入文件
fwrite($fp,$string);
//关闭文件
fclose($fp);
//另一个文件
header('location: index .php');
?>
网友评论