<?php // Sample indexed array $array1 = array(1, 2, 3, 4, 5); // Search value and delete if(($key = array_search(4, $array1)) !== false) ...
確定! 回上一頁