When writing functions in PHP how extensively should one check and validating the data in parameters?
For example if I expect a parameter to be a boolean, should I cast it as such?
Or check that the parameter type is boolean and if not return FALSE?
I don't particularly like the idea of returning FALSE from a function just because the parameter's invalid, unless the function of the function (urrg) is to validate some data. Because it can mask the actual result of the function if it is designed to return TRUE/FALSE anyway.
If the function generates a PHP error resulting from invalid data being supplied then in a way that's more useful to the developer than just returning FALSE or returning an empty string. That way they know their input data (and therefore possible usage of the function) is invalid/incorrect rather than the tests within the function just returning FALSE rather than TRUE.
I could always check the data coming in to the function and trigger_error() if the data is invalid. But to what extent is that necessary?
assert()decorations could be used, unless your application flow and behaviour is that unstable that you might receive invalid types after deployment still. Use execeptions if you can't get it in order during development. – mario Oct 27 '12 at 8:51