Hi guys i have an array
$a=[1,2,3,4,5,...]
But i want to check if any other element than number exist in array For example
These are my arrays
$a=[1,2,3,4,5,a,6,b,7]
$b=[1,2,3,4,5]
$a has numbers and variables
$b has numbers only
So my output is
check($a) should be false
check($b) should be true