$month = date('M',strtotime('last day last month'));
$sel = "SELECT records where month='".$month."'";
echo $sel;
:私はこれを行うと、私は奇妙な結果を
$ date
Wed Mar 1 01:46:06 EST 2017
php.iniの
date.timezone = America/New_York
を取得
結果は次のとおりです。
SELECT records where month='Jan';
何か考えてみませんか?
前と後の違いはありません。 – bart2puck