|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-22 10:23 UTC] ssb
[2013-04-02 11:18 UTC] krakjoe@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 08:00:01 2025 UTC |
Either explode is mis-documented, or the documented features are still to be implemented. Current doc has as an example (strings.sgml) $pieces = explode(" ", $pizza); This currently doesn't work, however (it should build array) list($x, $y, $x) = explode(" ", $pizza); does. (CHANGES) Also, implode/explode arguments not inuitive. implode takes ($array, " "), while explode is (" ", $array) ... hmm.