Changeset 6222
- Timestamp:
- 10/10/07 22:11:18 (11 months ago)
- Files:
-
- trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/functions.php
r6198 r6222 1433 1433 } 1434 1434 1435 /** 1436 * Converts input to an absolute integer 1437 * @param mixed $maybeint data you wish to have convered to an absolute integer 1438 * @return int an absolute integer 1439 */ 1440 function absint($maybeint) { 1441 return abs(intval($maybeint)); 1442 } 1443 1435 1444 ?>
