zeroise( int $number, int $threshold )
Add leading zeros when necessary.
Description Description
If you set the threshold to ‘4’ and the number is ’10’, then you will get back ‘0010’. If you set the threshold to ‘4’ and the number is ‘5000’, then you will get back ‘5000’.
Uses sprintf to append the amount of zeros based on the $threshold parameter and the size of the number. If the number is large enough, then no zeros will be appended.
Parameters Parameters
- $number
-
(int) (Required) Number to append zeros to if not greater than threshold.
- $threshold
-
(int) (Required) Digit places number needs to be to not have zeros added.
Return Return
(string) Adds leading zeros to number if needed.
Source Source
File: wp-includes/formatting.php
function zeroise( $number, $threshold ) { return sprintf( '%0' . $threshold . 's', $number ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
0.71 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Leading zeros on number of comments