此函数不会更改 DateTimeImmutable 对象的值,正如方法名称可能暗示的那样。毕竟,该对象是不可变的。
<?php
$dti = new DateTimeImmutable();
echo $dti->getTimestamp(); // 例如 123456789
$dti->setTimestamp(987654321);
echo $dti->getTimestamp(); // 123456789
$x = $dti->setTimestamp (987654321);
echo $x->getTimestamp(); // 987654321
?>