TYPO3  7.6
DateComparator.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
12 namespace Symfony\Component\Finder\Comparator;
13 
20 {
28  public function __construct($test)
29  {
30  if (!preg_match('#^\s*(==|!=|[<>]=?|after|since|before|until)?\s*(.+?)\s*$#i', $test, $matches)) {
31  throw new \InvalidArgumentException(sprintf('Don\'t understand "%s" as a date test.', $test));
32  }
33 
34  try {
35  $date = new \DateTime($matches[2]);
36  $target = $date->format('U');
37  } catch (\Exception $e) {
38  throw new \InvalidArgumentException(sprintf('"%s" is not a valid date.', $matches[2]));
39  }
40 
41  $operator = isset($matches[1]) ? $matches[1] : '==';
42  if ('since' === $operator || 'after' === $operator) {
43  $operator = '>';
44  }
45 
46  if ('until' === $operator || 'before' === $operator) {
47  $operator = '<';
48  }
49 
50  $this->setOperator($operator);
51  $this->setTarget($target);
52  }
53 }