1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Locale\Stub\DateFormat;
- /**
- * Parser and formatter for 24 hour format (1-24)
- *
- * @author Igor Wiedler <igor@wiedler.ch>
- */
- class Hour2401Transformer extends HourTransformer
- {
- /**
- * {@inheritDoc}
- */
- public function format(\DateTime $dateTime, $length)
- {
- $hourOfDay = $dateTime->format('G');
- $hourOfDay = ('0' == $hourOfDay) ? '24' : $hourOfDay;
- return $this->padLeft($hourOfDay, $length);
- }
- /**
- * {@inheritDoc}
- */
- public function normalizeHour($hour, $marker = null)
- {
- if (null === $marker && 24 === $hour) {
- $hour = 0;
- } else if ('AM' == $marker) {
- $hour = 0;
- } else if ('PM' == $marker) {
- $hour = 12;
- }
- return $hour;
- }
- /**
- * {@inheritDoc}
- */
- public function getReverseMatchingRegExp($length)
- {
- return '\d{1,2}';
- }
- /**
- * {@inheritDoc}
- */
- public function extractDateOptions($matched, $length)
- {
- return array(
- 'hour' => (int) $matched,
- 'hourInstance' => $this
- );
- }
- }
|