Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Zeropad a number

Pads a string with 0's until the given length limit is met

<?php
function zeropad($number, $limit) {
  return (strlen($number) >= $limit) ? $number : zeropad("0" . $number, $limit);
}
?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS