Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
$foo = 125;
$bar = dechex($foo);
printf ('%08s', $bar);
?>
<?php
$foo = 125;
$bar = '00000000' . dechex($foo);
print substr($bar, -8);
?>