I want to echo a special real time date format using PHP. For example, today we are in 11/09/2016 now.. well, I want to echo 11 septembre 2016
.
My code:
$d=strtotime("10:30pm April 15 2014");
echo "Created date is " . date("Y-m-d h:i:sa", $d);
Any ideas?