absint

函数
absint ( $maybeint )
参数
  • (mixed) $maybeint Data you wish to have converted to a non-negative integer.
    Required:
返回值
  • (int) A non-negative integer.
定义位置
相关方法
get_transientkses_initset_transienthas_filterrandom_int
引入
2.5.0
弃用
-

absint:该函数用于将一个变量转换为整数,确保结果总是一个正数。它通常用于净化用户输入,防止SQL注入攻击。

将一个值转换为非负整数。

function absint( $maybeint ) {
	return abs( (int) $maybeint );
}

常见问题

FAQs
查看更多 >