第 16 章 Array 數組
上一頁
部分 III. PHP 5
下一頁
Home
|
Mirror
|
Search
第 16 章 Array 數組
目錄
1. 刪除數組元素
2. 數組與字元串操作
數據相關函數
1. 刪除數組元素
$a[]="a1"; $a[]="a2"; $a[]="a3"; print_r($a); unset($a[1]); print_r($a);
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus