peehaa Posted May 10, 2007 Report Share Posted May 10, 2007 sveiki. ir array, kurā ir vērtības - a,b,c,d,e,f, bet kā no arraya izvilkt visas vērtības neieskaitot kādu konkrētu, piemēram a? Link to comment Share on other sites More sharing options...
andrisp Posted May 10, 2007 Report Share Posted May 10, 2007 1) Uztaisi masīvam kopiju 2) Noskaidro a elementa atrašanās vieta (array_search() vai arī ja vērtība atkārtojas tad array_keys ar $search_value parametru). 3) Izdzēs šo elementu(s). Link to comment Share on other sites More sharing options...
john.brown Posted May 10, 2007 Report Share Posted May 10, 2007 Funkcija array_diff() tevi glābs :) <?php $array = array('a','b','c','d'); $notneeded = array('b','d'); $res = array_diff($array,$notneeded); var_dump($res); ?> Link to comment Share on other sites More sharing options...
Recommended Posts