There's a few ways to deal with this...
- Use an IDE that supports docblocks. This deals with the pre-runtime type checking when writing code.
- Use type checking within your function This only helps with the runtime type checking, and you won't know when writing your code.
- Depending on the type you can use built-in type hinting. This however only works for non-scalar values, specifically
array and a class name.
1 - To implement #1 using a good IDE, you can docblock your function as such:
/**
* Say hello to someone.
*
* @param string $aName
**/
public function sayHello($aName) {
2 - To implement #2 use the is_ methods..
public function sayHello($aName) {
if (!is_string($aName)) {
throw new ArgumentException("Type not correct.");
}
// Normal execution
3 - You can't do this with your method above, but something like this.. Kindof the same as #2 apart from will throw a catchable fatal error rather than ArgumentException.
public function manipulateArray(array $anArray) {
It's worth noting that most of this is pretty irrelevant unless you're writing publicly usable library code.. You should know what your methods accept, and if you're trying to write good quality code in the first place, you should be checking this before hand.
Using a good IDE (I recommend phpStorm a thousand times over) you can and should utilise DocBlocks everywhere you can for all of your classes. Not only will it help when writing APIs and normal code, but you can use it to document your code, what if you need to look at the code 6 months later, chances are you're not going to remember it 100% :-)
Additionally, there's a lot more you can do with docblocks than just define parameter types, look it up.
function something(array $arrayName)php.net/manual/en/language.oop5.typehinting.php – Sabeen Malik Jun 22 '11 at 15:59$name, its a little bit poor :X – KingCrunch Jun 22 '11 at 16:00assert(), it can be nicely used for validation purposes i believe. – Sabeen Malik Jun 22 '11 at 16:03