Files

10 lines
214 B
PHP
Raw Permalink Normal View History

<?php
class WfDateTime extends DateTime
{
public function getTimestamp() {
return method_exists('DateTime', 'getTimestamp') ?
parent::getTimestamp() : $this->format('U');
}
}
?>