Answers for "datetime strftime php"

PHP
0

php strftime datetime

setlocale(LC_TIME, 'it_IT.UTF-8');
$date = new DateTime($run['at']);
strftime("%d %B", $date->getTimestamp())
Posted by: Guest on May-20-2020
0

php strftime year 2 digits

%y	Two digit representation of the year	Example: 09 for 2009, 79 for 1979
%Y	Four digit representation for the year	Example: 2038
Posted by: Guest on November-21-2020

Browse Popular Code Answers by Language