|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-08 14:29 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 16:00:01 2025 UTC |
if i do $minutes=array(0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55); and after i do : while($vname = array_shift($minutes)) { print "$vname<br>\n"; } i have nothing in output and if i do after: while($vname = array_pop($minutes)) { print "$vname<br>\n"; } I've all values except the '0'. Julien dumont