Changeset 28856
- Timestamp:
- 06/26/2014 06:23:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r28855 r28856 3001 3001 * 3002 3002 * @param mixed $maybeint Data you wish to have converted to a nonnegative integer 3003 * @param bool $limit Whether to only return up to PHP_INT_MAX.3004 3003 * @return int An nonnegative integer 3005 3004 */ 3006 function absint( $maybeint, $limit = false ) { 3007 $int = abs( intval( $maybeint ) ); 3008 if ( $limit && $int > PHP_INT_MAX ) { 3009 $int = PHP_INT_MAX; 3010 } 3011 return $int; 3005 function absint( $maybeint ) { 3006 return min( abs( (int) $maybeint ), PHP_INT_MAX ); 3012 3007 } 3013 3008
Note: See TracChangeset
for help on using the changeset viewer.