Logo

Programming-Idioms

History of Idiom 156 > diff from v9 to v10

Edit summary for version 10 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 9

2017-10-28, 10:59:52

Version 10

2018-09-04, 12:42:57

Idiom #156 Format integer with zero-padding

Assign to string s the value of integer i in 3 decimal digits. Pad with zeros if i < 100. Keep all digits if i1000.

Idiom #156 Format integer with zero-padding

Assign to string s the value of integer i in 3 decimal digits. Pad with zeros if i < 100. Keep all digits if i1000.

Extra Keywords
pad leading fixed width
Extra Keywords
pad leading fixed width
Code
$s = sprintf('%03d', $i);
Doc URL
https://secure.php.net/manual/en/function.sprintf.php
Demo URL
https://3v4l.org/aROnh