在php中代码的执行是从上到下依次执行
条件语句 if else switch
$name=56;
if($name<23) echo "hello world"
1.多条件语句
2.switch
3.循环语句
1.for循环
2.while
3. Do while