1 <?php
2
3 namespace Balance\Stdlib\Hydrator\Strategy;
4
5 use IntlDateFormatter;
6 use Zend\ServiceManager\ServiceLocatorAwareInterface;
7 use Zend\ServiceManager\ServiceLocatorAwareTrait;
8 use Zend\Stdlib\Hydrator\Strategy\StrategyInterface;
9
10 11 12
13 class Datetime implements StrategyInterface, ServiceLocatorAwareInterface
14 {
15 use ServiceLocatorAwareTrait;
16
17 18 19 20
21 protected $formatter;
22
23 24 25 26 27
28 protected function getFormatter()
29 {
30
31 if (! $this->formatter) {
32
33 $this->formatter = new IntlDateFormatter(null, IntlDateFormatter::MEDIUM, IntlDateFormatter::MEDIUM);
34 }
35
36 return $this->formatter;
37 }
38
39 40 41
42 public function extract($value)
43 {
44 return $this->getFormatter()->format(strtotime($value));
45 }
46
47 48 49
50 public function hydrate($value)
51 {
52 return date('c', $this->getFormatter()->parse($value));
53 }
54 }
55