1.基礎部分
阿新 • • 發佈:2018-11-20
輸出
echo
可以輸出一個或者多個字串
echo "hello","many","this";
print
只允許輸出一個字串。返回值為1
print "hello";
輸出變數要用{}
print "My car is a {$cars[0]}";
變數
常量–預設為全域性的
define("name","value");
- name:常量名,value:常量值
並置字串連線符(.)
echo "you"." "."are mine";
字串長度 strlen()
不等於兩種表示方法
<>
!=
邏輯運算子
$x and $y; 與
$x or $y;
$x xor $y; 異或
陣列
定義陣列
$car=array("BMW","toyota","VOlvo");
獲取陣列的長度
count($array);
遍歷陣列
$people=array("man","women","middle"); for($i=0;i<count($people);$i++){ echo $peolpe[$i]; echo "<br/>"; }
關聯陣列
$age=array("peter"=>12,"Jone"=>23,"Mun"=>42);
echo "<br/>";
echo $age["peter"];