![]() |
Admin 12/20/2017 |
Check PHP date() function: $value = date('l dS \o\f F Y h:i:s A', strtotime($value) ); |
M
|
mrl40 author 12/21/2017 |
Check PHP date() function: http://php.net/manual/en/function.date.php It comes with a number of examples. If you use 'View as' Custom you will also need to use strtotime() function to convert date value to timestamp first. $value = date('l dS \o\f F Y h:i:s A', strtotime($value) );
|