How to find a variable is of type array in cakephp?
thanks
Use PHP's is_array function:
is_array
if(is_array($var)) { //do something }