You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
345 B
9 lines
345 B
<?php
|
|
$today = date('Ym01', strtotime('-1 month',strtotime(date('Ym01'))));
|
|
$yesterday = date("Ym01", strtotime('-1 month',strtotime(date('2023-11-17'))));
|
|
echo "today: " . $today . "<br>";
|
|
echo "yesterday: " . $yesterday . "<br>";
|
|
echo $today-$yesterday;
|
|
echo "<br>";
|
|
$test = date('Ymd', $today-$yesterday);
|
|
echo $test;
|
|
|