You are here

private static property Cookie::$dateFormats in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::dateFormats

Handles dates as defined by RFC 2616 section 3.3.1, and also some other non-standard, but common formats.

Type: array

File

vendor/symfony/browser-kit/Cookie.php, line 27

Class

Cookie
Cookie represents an HTTP cookie.

Namespace

Symfony\Component\BrowserKit

Code

private static $dateFormats = array(
  'D, d M Y H:i:s T',
  'D, d-M-y H:i:s T',
  'D, d-M-Y H:i:s T',
  'D, d-m-y H:i:s T',
  'D, d-m-Y H:i:s T',
  'D M j G:i:s Y',
  'D M d H:i:s Y T',
);