WC_DateTime::getTimestamp()publicWC 3.0.0ReturnTypeWillChange

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() code WC 8.6.1

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