[Zend Framework] Slug filter
While studying for my Zend Framework certification, I tried to build a small application to test my knowledge. One of the tasks in that project was to try and build a slug filter which converts a particular string to slug, for example, 'My Test String' to 'my-test-string'. It also checks for slug duplication if you [...]
Namespaces in PHP 5.3 – Part 1
One of the most significant and welcome features added in PHP 5.3 was that of namespaces. While this has been around in other programming languages, namespaces have finally found their place starting with PHP 5.3. If you are not new to namespaces and have worked on them in other languages don't go away, you might [...]