Skip to content

Instantly share code, notes, and snippets.

@rririanto
Created April 3, 2016 20:00
Show Gist options
  • Save rririanto/7ff268e580806fc1646c218c2478b3a0 to your computer and use it in GitHub Desktop.
Save rririanto/7ff268e580806fc1646c218c2478b3a0 to your computer and use it in GitHub Desktop.
Generator No Urut
<?php
function generateUrut($id)
{
$tz_object = new DateTimeZone('Asia/Makassar');
//date_default_timezone_set('Brazil/East');
$datetime = new DateTime();
$datetime->setTimezone($tz_object);
$dater = $datetime->format('Ymd');
$getid = sprintf('%04d',$id);
$result = sprintf('%s%s', $getid, $dater);
return $result;
}
$idurut = generateUrut(1);
echo $idurut;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment