mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +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>';
|