Tuesday, 12 March 2013

Function responses

There is a question going around about whether a PHP function should return a response. Is a function (or method), that does something and doesn't return anything any good? And I personally think - no its not good. A function should ALWAYS return something. Even if its true or false, $this or mysql_insert_id(). The main reason being that, if a function simply executes and does its thing, without returning anything, there is no way to verify if that function has executed successfully. If a PHP function call returns null once completed, but also returns null if there was an error of some sort, how does the developer know if it ran ok. Simply returning true, so you can verify if it ran as intended, or even throwing an exception is some form of return value, so if there is an issue this should be picked up by the developer and they can rely on their code working as intended.

No comments:

Post a Comment

Mastering Frontend Interviews: 10 Essential Concepts Every Developer Should Know

Frontend development interviews can be daunting, particularly with the breadth of topics covered. From JavaScript fundamentals to performanc...