Type casting in PHP
PHP does not support explicit type definition in variable declaration. For example, you CANNOT declare a variable as follows:
int $count = 10;
In PHP, a variable's type is determined by the context in which the variable is used.