Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php mysql date format

date("Y-m-d H:i:s")
Comment

date formate in php

date("D M j G:i:s T Y")."<br>";             // Sat Mar 22 17:16:18 MST 2001
date('H:m:s m is mo
	h')."<br>";   // 18:03:18 m is month
date("H:i:s")."<br>";                       // 18:16:18
date("Y-m-d H:i:s")."<br>";                 // 2022-03-11 18:16:18 (MySQL DATETIME format)
date("j F, Y, g:i a")."<br>";               // 11 March, 2022, 6:16 pm
date("m.d.y")."<br>";                       // 03.11.01
date("j, n, Y")."<br>";                     // 11, 3, 2001
date("Ymd")."<br>";                         // 20010310
date('h-i-s, j-m-y, it is w Day')."<br>";   // 02-12-18, 10-03-01, 1631 1618 6 Satpm01
date('i	 is 	he jS day.')."<br>"; // it is the 15th day.
Comment

format date in php

$myDateTime = DateTime::createFromFormat('Y-m-d', $dateString);
$newDateString = $myDateTime->format('d-m-Y');
Comment

date format in php

date('m/d/Y h:i:s a',strtotime($val['EventDateTime']));
Comment

php to formate date from database

date_default_timezone_set('asia/karachi'); // set timezone
$timestamp = $row['last_login']; // get current epoch time
$format = "Y-m-d h:i:s a"; // format for date output
$formatted_date = date($format, $timestamp); // convert timestamp to format
print($formatted_date);
Comment

PREVIOUS NEXT
Code Example
Php :: hwo to limit char in php 
Php :: laravel collection flatten 
Php :: php throw exception 
Php :: check if table exists sql php 
Php :: woocommerce redirect shop page 
Php :: php echo html response code 200 
Php :: E: Unable to locate package php7.2-mbstring 
Php :: cast array to object php 
Php :: var_dump beautify 
Php :: tax query by term id 
Php :: custom js css using wordpress hook 
Php :: convert to int laravel 
Php :: laravel where is null 
Php :: how to connect to a database in php 
Php :: wp_get_attachment_image class 
Php :: laravel check if eloquent just created 
Php :: kill php process mac 
Php :: click confirm before submit form php 
Php :: laravel where column different 
Php :: wait php 
Php :: decode jwt token laravel 
Php :: php put file in ftp server 
Php :: wordpress query orderby name 
Php :: intl extension php ubuntu 
Php :: docx file validation laravel 8 
Php :: php fpm status check 
Php :: check is domain php 
Php :: yii2 redirect with 301 
Php :: laravel eloquent order by alphabetical order 
Php :: laravel date validation 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =