Bu biçimde dünün tarihi göstermek nasıl?

1 Cevap php

Ben dünün tarihini göstermek için nasıl NETON üzerinde bir sürü bilgi var olduğunu biliyorum ama ben bunların hiçbirini bu formatta çalışmak alamıyor

How do you show yesterdays date if todays date is in this format date('F jS, Y') ?

27 Temmuz 2009 26 Temmuz 2009 göstermelidir

//Does not work
$yesterday = date('F jS, Y', mktime(0, 0, 0, date("F") , date("j") - 1, date("Y")));
echo $yesterday;

1 Cevap

Kullanmak çok müthiş strtotime:

$today = 'July 27th, 2009';
$yesterday = date('F jS, Y', strtotime('yesterday', strtotime($today)));
print $yesterday; // July 26th, 2009