SqliteDateSql::$replace
An array of PHP-to-SQLite date replacement patterns.
Type: array
File
- 
              core/
modules/ views/ src/ Plugin/ views/ query/ SqliteDateSql.php, line 32  
Class
- SqliteDateSql
 - SQLite-specific date handling.
 
Namespace
Drupal\views\Plugin\views\queryCode
protected static $replace = [
  'Y' => '%Y',
  // No format for 2 digit year number.
'y' => '%Y',
  // No format for 3 letter month name.
'M' => '%m',
  'm' => '%m',
  // No format for month number without leading zeros.
'n' => '%m',
  // No format for full month name.
'F' => '%m',
  // No format for 3 letter day name.
'D' => '%d',
  'd' => '%d',
  // No format for full day name.
'l' => '%d',
  // no format for day of month number without leading zeros.
'j' => '%d',
  'W' => '%W',
  'H' => '%H',
  // No format for 12 hour with leading zeros.
'h' => '%H',
  'i' => '%M',
  's' => '%S',
  // No format for AM/PM.
'A' => '',
];
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.