PDA

View Full Version : explode it



DaveMania
February 11th, 2006, 06:04 PM
something along the lines of

explode(*,$variable);

would be great :)

bwh2
February 11th, 2006, 07:15 PM
uh.... http://us3.php.net/explode

you might want to provide a few more details.

hl
February 11th, 2006, 07:20 PM
what exactly would you like?

to split into all characters?

PHP4 - preg_split("//", $string, -1, PREG_SPLIT_NO_EMPTY);
PHP5 - str_split($string);

DaveMania
February 12th, 2006, 06:29 AM
cheers, h.

hl
February 12th, 2006, 10:56 AM
cheers, h.
Heh.. I'm a good guesser. You really should've been more specific :P