これは私がうるさいです...しかし、現在、私\
はすべてのクラスの前で使用する必要があります...
//credit card expiration years and months
$expirationYears = array();
$expirationMonths = array();
$datePeriod = new \DatePeriod(new \DateTime(), new \DateInterval("P1Y"), 5);
foreach ($datePeriod as $year) {
$expirationYears[] = $year->format('Y');
}
$datePeriod = new \DatePeriod(new \DateTime('January 1st'), new \DateInterval("P1M"), 11);
foreach ($datePeriod as $month) {
$class = new \stdClass();
$class->value = $month->format('m');
$class->label = $month->format('M');
$expirationMonths[] = $class;
}
これを回避する方法はありますか、それとも名前空間環境で必要なものですか?
各クラスに を指定するのは不合理だと思いますuse
...維持するのが面倒です