How NOT to write (OOP PHP) code
My comment on one of the files of SuiteCRM … … Continue readingHow NOT to write (OOP PHP) code
"Life is really simple, but men insist on making it complicated." ~Confucius
My comment on one of the files of SuiteCRM … … Continue readingHow NOT to write (OOP PHP) code
Even though memory is getting cheaper, our applications are becoming more complicated and we need to write our code more carefully. … Continue readingPHP Memory Usage: The cost of a million objects
The aim is to write code efficiently, but without compromising easy debugging, maintenance, and especially adaptability … … Continue readingProgramming with too many unknowns in a dynamic language
I always loved the ease of use of arrays in PHP. Simple, dynamic arrays; arrays with integer indexes or string keys; hash tables, maps, collections, resizable variant arrays; you name it. … Continue readingPHP Associative Arrays for C# .NET
Regarding __toString … Continue readingPHP: magic methods
__autoload() function can be very useful to optimize your code esp. when you have so many classes. … Continue readingPHP5: Autoloading your magic!