Вход Регистрация
Файл: symfony-2.7/src/Symfony/Component/Intl/DateFormatter/DateFormat/SecondTransformer.php
Строк: 48
<?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 SymfonyComponentIntlDateFormatterDateFormat;

/**
 * Parser and formatter for the second format.
 *
 * @author Igor Wiedler <igor@wiedler.ch>
 */
class SecondTransformer extends Transformer
{
    
/**
     * {@inheritdoc}
     */
    
public function format(DateTime $dateTime$length)
    {
        
$secondOfMinute = (int) $dateTime->format('s');

        return 
$this->padLeft($secondOfMinute$length);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getReverseMatchingRegExp($length)
    {
        return 
=== $length 'd{1,2}' 'd{'.$length.'}';
    }

    
/**
     * {@inheritdoc}
     */
    
public function extractDateOptions($matched$length)
    {
        return array(
            
'second' => (int) $matched,
        );
    }
}
Онлайн: 0
Реклама