|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-20 01:34 UTC] iliaa@php.net
[2002-10-20 14:21 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 01:00:02 2025 UTC |
$split = explode("|", $DaysOfWeek); for ($x = 0; $split[$x]; $x++) { echo $split[$x]."\n"; } //if $DaysOfWeek starts with 0 (eg. 0|1|2) then $split //gets blanked. 1|2|3 or any other combination is fine.