Displaying posts tagged: php

HipHop for PHP Commercial Implications

1 Comment
So the blogs are a twitter and the tubes are getting clogged with all the chat about HioHop, well at least in the PHP Community.  The buzz is really not bad considering that the HipHop translator hasn't even been published yet (at least at the time of writing it has not been put on github) and ...

Code Readability Part 2, Code Structure

2 Comments
After reading some of the comments from Part 1 I've really been motivated to continue this series (I'm sorry for being late to approve comments.) While writing comments can really speak to the frame of mind, and the intent, at the time of writing it can only go so far to ensure that the reader and/or ...

Code Readability, Part 1

6 Comments
The simplicity of PHP can sometimes be overwhelming, with so many different ways and approaches to creating solutions for our problems we sometimes lose the ability to think past the current problem and into the future. I sometimes feel overwhelmed thinking about the fact that what I write today could still be running 15, 20, or ...

In_array() not recursive

No Comments
So I ran into a slight problem today, I had a nested array that I needed to search for certain values. The problem I ran into off the bat was that in_array is not recursive and there are no equivalents that are. I wound up searching the net and finding some ideas that I turned into ...