Skip to content

Instantly share code, notes, and snippets.

@amikitevich
Created January 25, 2016 00:02
Show Gist options
  • Save amikitevich/febed1444cb85259a693 to your computer and use it in GitHub Desktop.
Save amikitevich/febed1444cb85259a693 to your computer and use it in GitHub Desktop.
Число с ведущими нулями
<?php
$str = '1';
echo sprintf("%04d", $str);
// Выводит "0001"
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment