4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Intl\DateFormatter\DateFormat
;
15 * Parser and formatter for day of year format
17 * @author Igor Wiedler <igor@wiedler.ch>
19 class DayOfYearTransformer
extends Transformer
24 public function format(\DateTime
$dateTime, $length)
26 $dayOfYear = $dateTime->format('z') +
1;
28 return $this->padLeft($dayOfYear, $length);
34 public function getReverseMatchingRegExp($length)
36 return '\d{'.$length.'}';
42 public function extractDateOptions($matched, $length)