Posted in
4
12:12 am, January 10, 2022
make a nice readable date using a timestamp string function make_nice_date
handy if you have a timestamp like this:
2022-01-10 00:12:42
and want it to look a bit nicer. like this...
12:19 am, January 10, 2022
PHP
// makes a nice readable date from a mysql timestamp
function make_nice_date($timestamp_string) {
$nice_date = date("g:i a, F j, Y ", strtotime($timestamp_string));
return($nice_date);
}
// example with existing timestamp string
$timestamp_string = "2022-01-10 00:12:42";
$nice_date_out = make_nice_date($timestamp_string);
echo "<h3>make_nice_date example one</h3>";
echo $nice_date_out . "<br>";
// example with current timestamp string
$current_timestamp = date('Y-m-d H:i:s');
$nice_date_out = make_nice_date($current_timestamp);
echo "<h3>make_nice_date current timestamp</h3>";
echo $nice_date_out . "<br>";
View Statistics
This Week
0
This Month
0
This Year
0
Add Comment
Other Items in php functions
make a nice readable date using a timestamp string function make_nice_date
get php to validate its self with php check syntax
Spam IP Database and delete button
youtube search api request function
list all array json function list_all_array_json
php get file extension from a file name
php post data back to a url with a function
generate random username function in php
Related Search Terms
Other Categories in Code
c testing apache apps asp bat bootstrap bootstrap templates core css css grid design elements fancybox fonts foundation framework gimp git html icons ideas images javascript jquery js linux mac nginx node php php functions php simple html dom pi400 python react sections site bugs site documentation sql sqlite sublime svg templates tools virtual box webdev windows wordpress