Changeset 59242 for trunk/src/wp-includes/load.php
- Timestamp:
- 10/15/2024 11:39:38 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r59189 r59242 1430 1430 1431 1431 /** 1432 * Converts a value to non-negative integer. 1433 * 1434 * @since 2.5.0 1435 * 1436 * @param mixed $maybeint Data you wish to have converted to a non-negative integer. 1437 * @return int A non-negative integer. 1438 */ 1439 function absint( $maybeint ) { 1440 return abs( (int) $maybeint ); 1441 } 1442 1443 /** 1432 1444 * Retrieves the current site ID. 1433 1445 *
Note: See TracChangeset
for help on using the changeset viewer.