Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php add days to date

<?php  
   
$date = "2022-08-12"; 
  
// Add days to date and display it 
echo date('Y-m-d', strtotime($date. ' +10 days'));  // 2022-08-22
echo date('Y-m-d', strtotime(date('Y-m-d'). ' +1 days')); 	// 2022-08-23
echo date('Y-m-d', strtotime(date('Y-m-d'). ' +1 months')); // 2022-09-12
echo date('Y-m-d', strtotime(date('Y-m-d'). ' +1 year'));	// 2023-08-12
  
?> 
Comment

add 7 days to date php

$date = "Mar 03, 2011";
$date = strtotime($date);
$date = strtotime("+7 day", $date);
echo date('M d, Y', $date);
Comment

Add 2 days to the current date in PHP

<?php
  $result = date('d.m.Y', strtotime('+2 day', time()));

  echo $result;
?>
Comment

php add days to date

$start_date = "2015/03/02";  
$date = strtotime($start_date);
$date = strtotime("+7 day", $date);
echo date('Y/m/d', $date);
Comment

how to add extra days from a date php

<?php
  // adding extra days to date 
  
  // Steps:
	// 1) using carbon
    // 2) using strtotime
      
    //Step 1
  $date = date('Y M d h:i:s') // 2020 09 22 22:09:26 UTC
  
  $new_date = Carbon::parse($date->addDays(1); // adds extra day
                            
  // Step 2
  $date = date('Y M d h:i:s') // 2020 09 22 22:09:26 UTC
  
  echo $new_date = date('Y M d h:i:s', strtotime($date. '+1 day'));
?>
Comment

Add 7 days to the current date in PHP

<?php
  $result = date('d.m.Y', strtotime('+7 day', time()));

  echo $result;
?>
Comment

Add 5 days to the current date in PHP

<?php
  $result = date('d.m.Y', strtotime('+5 day', time()));

  echo $result;
?>
Comment

Add days to date in PHP

$date = new DateTime('2020-11-24');
$date->add(new DateInterval("P9D"));

echo $date->format('Y-m-d');
Comment

adding days in datetime php

<?php
$date = new DateTime('2016-06-06'); // Y-m-d
$date->add(new DateInterval('P30D'));
echo $date->format('Y-m-d') . "
";
?>
Comment

PREVIOUS NEXT
Code Example
Php :: factorial program in php using recursive function 
Php :: get last id in laravel 
Php :: get last month php 
Php :: php current page url 
Php :: if text contains word then in php 
Php :: get today datetime in php 
Php :: how to create shortcode 
Php :: laravel auth namespace 
Php :: where laravel function 
Php :: php array_reverse keep keys 
Php :: add custom user meta and display it in user page 
Php :: strtotime add 1 hour 
Php :: fill zero on php 
Php :: render vs redirect laravel exception 
Php :: curl header log php 
Php :: toarray php 
Php :: loop object property laravel 
Php :: php write to file 
Php :: where_in codeigniter 
Php :: laravel get first record 
Php :: how to check if there is an authenticated user laravel 
Php :: php json_decode without quotes 
Php :: wordpress is admin 
Php :: laravel route group name 
Php :: check type in php 
Php :: get post url from post id wordpress 
Php :: php str to int 
Php :: laravel old value for select option 
Php :: how to replace double quotes in a string in php 
Php :: laravel new date 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =