>> $string = explode( '', 'string' );

Timothy Hitchens wrote:
> That won't work.. empty delimiter errors always..

Your right, I didn't know.

> you will have to use
> my preg one from earlier...

But your preg thingy will only split at spaces, so that'll have to change to

<?
$string = 'test';
preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY);
?>

in this case, right?

Grtz Erwin


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to