Prev: basic authentication and redirection
Next: XMLRPC issue
From: clancy_1 on 3 Mar 2010 18:46 On Wed, 3 Mar 2010 08:21:06 -0600, haliphax(a)gmail.com (haliphax) wrote: >> On Fri, Feb 26, 2010 at 11:01 PM, <clancy_1(a)cybec.com.au> wrote: >> > while ($i < $j) { $b[$i] = $a[$i++]; } B. >> > >> > You get $b[0] = $a[1], and so on (as you would expect). >> > >Wouldn't that be $b[0] = $a[0], with the value of $i being 1 *after* the >statement was finished executing? You used a post-decrement operator on $i >at the end of your statement, so I don't think that $i would be increased >before being used to index into the $a array. Try it! Clancy
|
Pages: 1 Prev: basic authentication and redirection Next: XMLRPC issue |