Changeset 59242 for trunk/src/wp-includes/functions.php
- Timestamp:
- 10/15/2024 11:39:38 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r59192 r59242 5478 5478 5479 5479 /** 5480 * Converts a value to non-negative integer.5481 *5482 * @since 2.5.05483 *5484 * @param mixed $maybeint Data you wish to have converted to a non-negative integer.5485 * @return int A non-negative integer.5486 */5487 function absint( $maybeint ) {5488 return abs( (int) $maybeint );5489 }5490 5491 /**5492 5480 * Marks a function as deprecated and inform when it has been used. 5493 5481 *
Note: See TracChangeset
for help on using the changeset viewer.