sizeof — count() 的别名
參數
數值或變數
返回值: int
If your array is "huge"
It is reccomended to set a variable first for this case:
THIS->
$max = sizeof($huge_array);
for($i = 0; $i < $max;$i++)
{
code...
}
sizeof — count() 的别名
參數
數值或變數
返回值: int
If your array is "huge"
It is reccomended to set a variable first for this case:
THIS->
$max = sizeof($huge_array);
for($i = 0; $i < $max;$i++)
{
code...
}
isset($變數)
用途
偵測,裡面的變數是否有被宣告且其值不為null。
if (isset($sumit)){
array()函式是接收一串以逗號為區隔的資料,放入陣列中。
$aLanguages = array("Arabic", 3 => "German", "Korean", "Tagalog");
echo $aLanguages[0] ; // "Arabic"
echo $aLanguages[3] ; // "German"
echo $aLanguages[4] ; // "Korean"
echo $aLanguages[5] ; // "Tagalog"
若我們沒有指定任何索引值,這些陣列的元素會被指派預設的索引值。要明確指定array()構件中的索引值的話,要用 =>運算子。