php is_numeric

某些 php 函数的返回值毫无规律可循。比如

is_numeric("123")

返回 true;

is_numeric(" 123")

(前导空格)返回 true;而

is_numeric("123 ")

(后导空格)返回 false。

php 有灵活的语法,但每遇这种情况,我总是羡慕其他语言的严谨。

Leave a comment

Your email address will not be published. Required fields are marked *