WC_DateTime::getTimestamp()
Missing in PHP 5.2 so just here so it can be supported consistently.
Method of the class: WC_DateTime{}
No Hooks.
Return
Int
.
Usage
$WC_DateTime = new WC_DateTime(); $WC_DateTime->getTimestamp();
Changelog
Since 3.0.0 | Introduced. |
WC_DateTime::getTimestamp() WC DateTime::getTimestamp code WC 9.6.0
public function getTimestamp() { return method_exists( 'DateTime', 'getTimestamp' ) ? parent::getTimestamp() : $this->format( 'U' ); }