0
を倍増一桁の月表示していない01すべき必要があるが、私はPHPの日付( 'M')はphp.net日( 'M')に応じ
dirloc = date('Y') . "/" . date('m') . "/" . $word_id . "/";
を倍増一桁の月表示していない01すべき必要があるが、私はPHPの日付( 'M')はphp.net日( 'M')に応じ
dirloc = date('Y') . "/" . date('m') . "/" . $word_id . "/";
Install PHPUnit.Run the following UnitTest:
代わりに1を取得しています// make sure PHPUnit is included
class DateTest extends PHPUnit_Framework_TestCase
{
public function setup()
{
date_default_timezone_set('UTC');
}
public function getDates()
{
return array(
array('01', 'Jan'),
array('02', 'Feb'),
array('03', 'Mar'),
array('04', 'Apr'),
array('05', 'May'),
array('06', 'Jun'),
array('07', 'Jul'),
array('08', 'Aug'),
array('09', 'Sep')
);
}
/**
* @dataProvider getDates
*/
public function testDateReturnsMonthWithLeadingZero($expected, $month)
{
$this->assertSame($expected, date('m', strtotime($month)));
}
}
特定のテスト日付でテストが失敗した場合は、PHPバージョンとオペレーティングシステムを収集し、PHP bugtrackerでバグを報告してください。テストがすべてのテスト日程に合格した場合、あなたは何か間違ったことをしています。
どのPHPバージョンですか? – deceze
@deceze ver 5.2.14 – acctman
コードスニペットは私のマシンで正常に動作します。 –