foreach 有2種結構語法的方式,如下範例印出的結果會相同 $arr = array("one", "two", "three"); foreach ($arr as $value){echo $value;} foreach ($arr as $key ...
確定! 回上一頁