PHP
Chaining PHP methods
Many frameworks these days allow for elegant 'chaining' of methods. This typically looks similar to $this->db->get()->users(); Want to know how to do this? we will show you how in the steps below.
Formatting filesize with PHP
A common task you might face when creating a web application is devising a simple, elegant method for formatting filesize. If you are using a PHP framework you most likely already have access to a function or method similar to below.
