martins256 Posted April 8, 2006 Report Share Posted April 8, 2006 Tādat ir array un katras rindiņas beigās ir atstarpe, vajag no tās atstarpes pēc iespējas efektīvāk un vienkāršāk atbrīvoties. Link to comment Share on other sites More sharing options...
bubu Posted April 8, 2006 Report Share Posted April 8, 2006 Ja der, ka no katra array elementa tiks novāktas atstarpes gan sākumā, gan beigās, tad: $array = array_map("trim", $array); Ja vajag tikai no beigām novākt vienu simbolu (to atstarpi), tad: $array = array_map(create_function('$x', 'return substr($x, 0, -1);'), $array); Link to comment Share on other sites More sharing options...
martins256 Posted April 9, 2006 Author Report Share Posted April 9, 2006 paldies Link to comment Share on other sites More sharing options...
Recommended Posts