Answers for "how do I set time to a string in php"

PHP
2

time to string in php

<?php
$date = '27/06/2020, 04:42:43 PM';
$date = str_replace('/', '-', $date);
echo date('F j, Y, g:i a',strtotime($date));

// output : June 27, 2020, 4:42 pm
?>
Posted by: Guest on June-27-2020

Code answers related to "how do I set time to a string in php"

Browse Popular Code Answers by Language