Create Custom Date and Time Using strtotime()

<!DOCTYPE html> 
<html> 
<body> 
 
<?php 
$d = strtotime("10:30pm April 17 2016"); 
echo "Created date is " . date("Y-m-d h:i:sa", $d); 
?> 
 
</body> 
</html>

Output

Created date is 2016-04-17 10:30:00pm