Search
 
SCRIPT & CODE EXAMPLE
 

PHP

last day of previous month in php

$lastDay = date('t',strtotime('last month'));

print_r($lastDay);
Comment

how to get previous month in php

echo date('M Y', strtotime("-1 month"));
//to get date with time of previous month
echo date("Y-m-d H:i:s",strtotime("-1 month"));
Comment

previous month number in php

<?php
    $date = "2020-01-11";
    $newdate = date("Y-m-d", strtotime ( '-1 month' , strtotime ( $date ) )) ;
    echo $newdate;
?>
Comment

php date function get previous month

$tgl = '25 january 2012';

$prevmonth = date("M Y",mktime(0,0,0,date("m", strtotime($tgl))-1,1,date("Y", strtotime($tgl))));
echo $prevmonth;
Comment

PREVIOUS NEXT
Code Example
Php :: Carbon Add Days To Date In Laravel 
Php :: php create url with query sting from array 
Php :: json url decode php 
Php :: wordpress truncate text 
Php :: laravel remove duplicates from array 
Php :: cookie are not set in php 
Php :: php read csv file into array 
Php :: last page url in php laravel 
Php :: composer create project version 
Php :: php get bearer token from request 
Php :: laravel api form request validation 404 
Php :: return last inserted id in laravel 
Php :: upload pdf file in laravel 
Php :: laravel validation unique if this field is changed 
Php :: php date start of day 
Php :: convert multi-dimensional array into a single array in laravel 
Php :: wp logs 
Php :: php token generator 
Php :: make model inside module laravel 
Php :: convert multidimensional array to single array php 
Php :: get single column value in laravel eloquent 
Php :: Laravel Password & Password_Confirmation Validation 
Php :: remove foreign key constraint laravel 
Php :: get last letter in php 
Php :: remove last all special character from string php 
Php :: laravel foreign key constraint 
Php :: how to redirect to another page in php 
Php :: replace php 
Php :: file put contents append 
Php :: create a text file in laravel 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =