10 lines
214 B
PHP
Executable File
10 lines
214 B
PHP
Executable File
<?php
|
|
class WfDateTime extends DateTime
|
|
{
|
|
public function getTimestamp() {
|
|
return method_exists('DateTime', 'getTimestamp') ?
|
|
parent::getTimestamp() : $this->format('U');
|
|
}
|
|
}
|
|
|
|
?>
|