GNU/Linux Inside

Category Archives: PHP

PHP Performance: Array Iteration 0

In PHP, arrays are used for virtually everything (I’ll spare my rant on that), therefore it’s likely that you’re going to use them abundantly in your scripts. The issue we’re going to be focusing on here isn’t with the arrays themselves – it’s the simple fact that you’re probably going to have to iterate over [...]

PHP6 Snapshot – Namespace Separator Patch Applied 0

In my MyCustomBB Blog a while back, I discussed the PHP’s decision to change the namespace separator to a backslash. Until recently, this patch hadn’t yet been applied. Therefore, I continued developing my code using the old static operator (::).
Well, I recently installed the new PHP 6 snapshot from http://snaps.php.net/ and found that my code [...]