how can create a function in php that accept a two dimension array as parameter , something like this:
function check_the_length (array[$a_string][$length]){
return $result
}
and return an array as an result , like this:
$result=(true,false,true,false);
By the way if you have any better solution to making such a function please let me know
Thanks in advance
this will do the trick.