Create a Date With mktime()

<!DOCTYPE html> 
<html> 
<body> 

<?php 
$d = mktime(12, 15, 54, 8, 11, 2016); 
echo "Created date is " . date("Y-m-d h:i:sa", $d); 
?> 

</body> 
</html>

Output

Created date is 2016-08-11 12:15:54pm