This is a discussion on Re: how to use explode() in this case?!? within the PHP Language forums, part of the PHP Programming Forums category; Alexander Riegel wrote: > explode( "\"", $content); > > but this doesn't work Strange: it works for ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Alexander Riegel wrote:
> explode( "\"", $content); > > but this doesn't work Strange: it works for me. var_export(explode( "\"", $content)); The output is: array ( 0 => '12345 ', 1 => 'abcde', 2 => ' 95 0 0 0 0 12 8 23 44', ) Sidenote: I'd usually use '"' instead of "\"" for clarity. Jochen -- /** * @author Jochen Buennagel <zang at buennagel dot com> */ |