Archive for October, 2006

Thursday, October 12th, 2006

Chicago PHP User Group

We will have a special speaker in October and in order to accommodate his
schedule we are changing the regular meeting day from Wednesday, Oct
18 to Monday Oct 16th.
Same time and place!
Time: 6pm
Place: Info.com 150 N Michigan, 28th floor
If you will be arriving PAST 7pm, give me your name and I’ll tell Security
to let [...]

No Comments » - Posted in PHP by nola

Thursday, October 12th, 2006

Don’t Push if you don’t have to!

I learned something new the other day while studying for the PHP 5 Certification exam and when I actually read the docs on php.net for array_push I found the same tip:
Using
$arr[] = “blah”;
is faster than using
array_push($arr, “blah”);
Why? because its not doing a function call. Another thing I learned, and a good use of array_push is [...]

No Comments » - Posted in PHP by nola