Jump to content
php.lv forumi

Array split


Dooling

Recommended Posts

Ir vairāki masīvi, kuri tiek padoti. Piemēram:

Array 
( 
[0] => atbilde|09.02.2007.|1 
) 
Array 
( 
[0] => atbilde|10:40|2 
[1] => atbilde|11:20|2 
)

 

Man vajag katru šo masīvu split'ot. Kā to panākt ar funkciju split(), atdalītājs ir "|"?

 

P.S. Atradu risinājumu. Dzēsiet ārā šo topiku. Atrisināju izmantojo foreach($val as $key => $value)

Edited by Dooling
Link to comment
Share on other sites

Dooling, būtu pieticis, ja split() manuāļa lapu būtu papētījis sīkāk ;)

 

preg_split(), which uses a Perl-compatible regular expression syntax, is often a faster alternative to split(). If you don't require the power of regular expressions, it is faster to use explode(), which doesn't incur the overhead of the regular expression engine.
Link to comment
Share on other sites

×
×
  • Create New...