<?php $array = array(); $array[] = 1; $array[] = 2; // get the first item in the array print $array[0]; // prints 1 // get the last item in ...
確定! 回上一頁