PHP踩坑之删除数组指定元素

PHP删除数组指定元素

		$a=array("red", "green", "blue", "yellow");   
		unset($a[1]); 	//删除第二个元素  

你可能感兴趣的:(php,php,fastadmin,thinkphp)