PHP Exceptions
Exceptions are used to change the normal flow of a script if a specified error occurs. Today, I am going to show you how to use and handle the PHP Exceptions properly.
A passionate web developer with more than 13 years experience in PHP and other web related technology. My main interest is WordPress and new PHP frameworks. Owner of Influendo Programming. Enjoys exploring new stuff and possibilities, using new technologies and just having fun developing awesome stuff.
Exceptions are used to change the normal flow of a script if a specified error occurs. Today, I am going to show you how to use and handle the PHP Exceptions properly.
Today I am going to show some tips and tricks in Object Oriented PHP. The best thing to explain some things is to build a small application. I am going to use Wordnik API and build a small dictionary application.
CakePHP uses awesome built in find types to retrieve your data. Why stop there when you can write your own find types. Here is how.
Many of us write SQL queries. I am giving six example of some advanced but very useful ones that will make your life easier.
I had some problems recently when I realized that changing the document root every time you need to test a site locally isn’t cool. So I decided to write a small tutorial on virtual host under WAMP.
So, you have a webshop that is international and want to have a currency converter? Follow this tutorial and you will learn how to build one.
A small article giving you some tips for better productivity in whatever line of work you are.
Is it faster to calculate the length of the loop in advance?
Lambda or anonymous functions allow the quick definition of throw-away functions that are not used elsewhere.