WordPress函数文档absint()
将字符串/非整数值转换为整数 描述 Converts a value to a non-negative in…
将字符串/非整数值转换为整数
描述
Converts a value to a non-negative integer.
Synonym of abs( intval( $foo ) ).
用法
<?php absint( $maybeint ); ?>
参数
$maybeint
(mixed) (必填) Data you wish to have converted to a non-negative integer.
默认值: None
返回值
(int)
A non-negative integer.
历史
添加于 版本: 2.5
源文件
absint() 函数的代码位于 wp-includes/functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Convert a value to non-negative integer.
*
* @since 2.5.0
*
* @param mixed $maybeint Data you wish to have converted to a non-negative integer.
* @return int A non-negative integer.
*/
function absint( $maybeint ) {
return abs( intval( $maybeint ) );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/absint
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!