Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
Sorry that was it... i swear i checked it out as rodif_bl.. -brad --- Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > And are you sure you have that tree checked out using the rodif_bl > account? Because you are in the ACL file. See CVS/Root in your checked > out tree. > > -Rasmus > > On Tue

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Rasmus Lerdorf
And are you sure you have that tree checked out using the rodif_bl account? Because you are in the ACL file. See CVS/Root in your checked out tree. -Rasmus On Tue, 30 Jul 2002, Brad LaFountain wrote: > $ cvs commit ext/standard/array.c > cvs [server aborted]: "commit" requires write access to

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
$ cvs commit ext/standard/array.c cvs [server aborted]: "commit" requires write access to the repository cvs commit: saving log message in /tmp/cvs61090800.1 - brad --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > Hmm... I tried it and it said i didn't have karma. I'll try again tonite. > > -

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
Hmm... I tried it and it said i didn't have karma. I'll try again tonite. - brad --- Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > You have full karma to fix this. What makes you think you don't? > > On Tue, 30 Jul 2002, Brad LaFountain wrote: > > > Along with fixing this bugs (16063 and 16068)

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-29 Thread Rasmus Lerdorf
You have full karma to fix this. What makes you think you don't? On Tue, 30 Jul 2002, Brad LaFountain wrote: > Along with fixing this bugs (16063 and 16068) I signifintly increased the > preformance of array_pop and array_shift. > > Here are some times on a 1.2ghz athlon. > $t = array_fill(0,

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-29 Thread Brad LaFountain
Wrong patch file.. re-attaching. --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > Along with fixing this bugs (16063 and 16068) I signifintly increased the > preformance of array_pop and array_shift. > > Here are some times on a 1.2ghz athlon. > $t = array_fill(0, $size, "test"); > for($i = 0;$

[PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-29 Thread Brad LaFountain
Along with fixing this bugs (16063 and 16068) I signifintly increased the preformance of array_pop and array_shift. Here are some times on a 1.2ghz athlon. Before: $size = 2000; //1.633s $size = 4000; //8.942s $size = 6000; //24.005s $size = 1; //1m13.986s After: $size = 2000; //0.050s $si