mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
6 lines
101 B
PHP
6 lines
101 B
PHP
<?php
|
|
echo '<pre>';
|
|
printf('% 5d\n', 45); // ' 45'
|
|
printf('%05d\n', 45); // '00045'
|
|
echo '</pre>';
|