HEX
Server: Apache
System: Linux 4485441ca2e2 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 11:03:07 UTC 2025 aarch64
User: (1000)
PHP: 8.2.24
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/json-rest-api/lib/class-wp-json-datetime.php
<?php
/**
 * DateTime compatibility class
 *
 * @package WordPress
 * @subpackage JSON API
 */
class WP_JSON_DateTime extends DateTime {
	/**
	 * Workaround for DateTime::createFromFormat on PHP > 5.2
	 *
	 * @link http://stackoverflow.com/a/17084893/717643
	 *
	 * @param  string       $format   The format that the passed in string should be in.
	 * @param  string       $string   String representing the time.
	 * @param  DateTimeZone $timezone A DateTimeZone object representing the desired time zone.
	 * @return Datetime
	 */
	public static function createFromFormat( $format, $time, $timezone = null ) {
		if ( is_null( $timezone ) ) {
			$timezone = new DateTimeZone( date_default_timezone_get() );
		}

		if ( method_exists( 'DateTime', 'createFromFormat' ) ) {
			return parent::createFromFormat( $format, $time, $timezone );
		}

		return new DateTime( date( $format, strtotime( $time ) ), $timezone );
	}
}