我正在使用PHPDateTime
类为自定义许可系统生成日期。在调试它的时候,我注意到日期时间总是错误的,它将是5-dec-2018
,但现在我们在11月,expiration_date
的这个日期也将是相同的。
如何解决此问题?我需要在试用期的开始日期上增加30天。
这是代码。
class Activator {
private $uuid;
private $keygen;
private $licence_code;
public static function generateLicence($uuid) {
if (!file_exists(ABSPATH.'/DataStorage/.licence')) {
$start_date = new DateTime();
$time_zone = $start_date->setTimezone(new DateTimeZone('Europe/Rome'));
$trial_date = $start_date->add(new DateInterval('P30D'));
$end_date = $trial_date->format('d-M-Y');
$machine_uuid = bin2hex($uuid);
$licence_code = base64_encode($machine_uuid);
$licence_file = array(
'uuid' => $machine_uuid,
'activation_date' => $time_zone->format('d-M-Y'),
#'trial_version' => true,
#'expire_date' => $end_date,
#'licence_code' => $licence_code
);
$w = file_put_contents(ABSPATH.'/DataStorage/.licence', json_encode($licence_file));
echo $w;
}
}
这是预期的行为,因为您add()
到日期(通过执行$start_date->add(...)
-这将修改原始对象$start_date
。
您可以用几种不同的方法来解决这个问题,尽管最简单的方法只是创建一个新的实例,并在构造中直接添加30天。您也可以将时区设置为new DateTime()
的第二个参数。
$timezone = new DateTimeZone('Europe/Rome');
$start_date = new DateTime("now", $timezone);
$trial_date = new DateTime("+30 days", $timezone);
- PHP.net上的
new DateTime()
DateTime::add()
上的PHP.net
查看此实时演示。