WC_DateTime::getTimestamp()

Missing in PHP 5.2 so just here so it can be supported consistently.


Description Description


Return Return

(int)


Top ↑

Source Source

File: includes/class-wc-datetime.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.