📅  最后修改于: 2022-03-11 14:54:24.596000             🧑  作者: Mango
date('Y/m/d',strtotime("-1 days"));
Or Use DateTime class like this-
$date = new DateTime();
echo $date->modify("-1 days")->format('Y-m-d');