Home >php教程 >php手册 >浅谈PHP语法(4)

浅谈PHP语法(4)

WBOY
WBOYOriginal
2016-06-13 10:21:10717browse

文件:deal.php
echo "你的用户名为:$uname";
?> 以上程序会要求用户输入一个用户名,提交表单后,后回用户名确认信息。可看出,表单中的uname已成为了deal.php程序中的$uname变崐量。简单吧。:-)
下面看看PHP的基本流程控制:
if…else…Elseif
语法一:
if (条件) {
语句体
}
语法二:
if (条件) {
语句体一
}else{
语句体二
}
语法三:
if (条件1) {
语句体一
}elseif(条件2) {
语句体二
}else{
语句体三
}
我们把上面的deal.php程序改为:
if ($uname=="小明") {
echo "见到你真高兴,小明。";
}elseif ($uname=="小华"){
echo "喔,是小华呀。";
}else{
echo "你是$uname,对吧";
}
?>
除了if 语句外,还有while循环,它的语法如下:
while(条件){
语句体
}
当条件为true时,执行语句体。
do…while的语法如下:
do {
语句体
}while(条件)
先执行一次语句体,若条件为true,则循环再次执行语句体。
for循环的语法同C一样,如下:
for (条件初始;判断条件;条件改变) {语句}
而break 跳出正在执行的循环,continue 为中断本次循环。
好了,本文就到这吧。以上的一些基础相信您很快便能上手了的。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:浅谈PHP语法(3)Next article:PHP脚本的8个技巧(8)