What does this line of code mean?
迷路时你就往前走
迷路时你就往前走 2019-07-10 09:47:14
0
2
1652

if(!is_numeric($num1) || !is_numeric($num2)){

echo 'Please enter the numerical type';
}

迷路时你就往前走
迷路时你就往前走

reply all(2)
V

is_numeric() function is used to detect whether a variable is a number or a numeric string.

丨胖₯㎕萌萌丶

If either $num1 or $num2 is not a number or a numeric string, print a prompt message telling you that you need to enter a numeric type.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template