Format a number with leading zeros in PHP 13/07/2022 • PHP, sprintf $var = 1234567; echo sprintf('%08d', $var); // Output: // 01234567
sprintf with WordPress, not only for translations but for produce clearer code 13/03/2017 • PHP, sprintf, wordpress