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

About this user

Albert Peschar http://www.cheatguide.nl/

« 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

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