标签: php string types numbers arguments
假设这个
function Args($a) { if (/*HOW*/) { echo "the argument is a pure number"; } else { echo "the argument is a string"; } } Args(4); -> the argument is a pure number Args("4"); -> the argument is a string
根据函数和示例,我如何根据类型参数获取差异?
答案 0 :(得分:4)
使用内置函数is_int($value)或is_string($value)
is_int($value)
is_string($value)
is_int的手册是here, is_string here
答案 1 :(得分:3)
使用内置的gettype()功能。
gettype()
答案 2 :(得分:0)
function Args($a) { $type=gettype($a); echo "the argument is a ".$type; }