Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php convert string to date

$time = strtotime('10/16/2003');

$newformat = date('Y-m-d',$time);

echo $newformat;
// 2003-10-16
Comment

php string to date

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
The above one is the one of the example of converting a string to date.
echo $s ->format('Y-m-d');
The above one is another method 
Comment

string to datetime php

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
Comment

convert string to date php

$s = '08/11/2010 19:37:02';
$date = strtotime($s);
echo date('Y-m-d H:i:s', $date);
Comment

convert date php

$var = '21/05/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date))
Comment

Convert String to Date and Date-Time in PHP

phpCopy$oldDate = strtotime('03/08/2020');

$newDate = date('Y-m-d',$time);

echo $newDate;
//output: 2020-03-08
Comment

Convert String to Date and Date-Time in PHP

phpCopyecho $dateNew = DateTime::createFromFormat('m-d-Y', '03-08-2020')->format('Y/m/d');
//output: 2020/03/08
Comment

Convert String to Date and Date-Time in PHP

phpCopyecho $dateNew = date_create_from_format("m-d-Y", "03-08-2020")->format("Y-m-d");
//output: 2020/03/08
Comment

php string to date

$s = '06/10/2011 19:00:02';$date = strtotime($s);echo date('d/M/Y H:i:s', $date); The above one is the one of the example of converting a string to date. echo $s ->format('Y-m-d'); The above one is another method 
Comment

php string to date convertion and dates between

        $date = explode(' - ',$request['expected_date']);
        $start_date = date('Y-m-d', strtotime($date[0]));
        $end_date = date('Y-m-d', strtotime($date[1]));

        $dates = array();
        $current = strtotime($start_date);
        $date2 = strtotime($end_date);
        $stepVal = '+1 day';
        while( $current <= $date2 ) {
           $dates[] = date('Y-m-d', $current);
           $current = strtotime($stepVal, $current);
        }
Comment

PREVIOUS NEXT
Code Example
Php :: shortcut vsc select line up 
Php :: php check string is int 
Php :: auth.php Class "AppUser" not found 
Php :: acf repeater 
Php :: wordpress get current taxonomy 
Php :: get array key based on value php 
Php :: separate numbers with commas laravel 
Php :: --prefer-dist what is use in laravel 
Php :: laravel route logout 
Php :: php use variable as object key 
Php :: reset password multipple database laravel 
Php :: run shell script from php file 
Php :: laravel get auth user id 
Php :: Notice: Trying to access array offset on value of type int in /var/www/pdam/modules/phpexcel/PHPExcel/Cell/DefaultValueBinder.php on line 82 
Php :: php isset array 
Php :: get data from select option php 
Php :: php year from date 
Php :: php date + 30 days 
Php :: php uppercase first letter 
Php :: laravel add column migration 
Php :: create listener using laravel 
Php :: types of controller in laravel 
Php :: How to use my constants in Larvel 
Php :: laravel check if record exists 
Php :: get data based on date in laravel 
Php :: how to collapse array in laravel 
Php :: laravel print to log 
Php :: route closure function in laravel 
Php :: collapse open by default 
Php :: laravel create db 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =