<?php $origin = array(1,2,3,4,5,6); $new = array(2,3,4,6,8); // 取刪除id $del = array_diff($origin,$new); print_r($del); // output : Array ...
確定! 回上一頁