Вход Регистрация
Файл: vendor/symfony/mime/Encoder/QpMimeHeaderEncoder.php
Строк: 56
<?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 SymfonyComponentMimeEncoder;

/**
 * @author Chris Corbyn
 */
final class QpMimeHeaderEncoder extends QpEncoder implements MimeHeaderEncoderInterface
{
    protected function 
initSafeMap(): void
    
{
        foreach (
array_merge(
            
range(0x610x7A), range(0x410x5A),
            
range(0x300x39), [0x200x210x2A0x2B0x2D0x2F]
        ) as 
$byte) {
            
$this->safeMap[$byte] = chr($byte);
        }
    }

    public function 
getName(): string
    
{
        return 
'Q';
    }

    public function 
encodeString(string $string, ?string $charset 'utf-8'int $firstLineOffset 0int $maxLineLength 0): string
    
{
        return 
str_replace([' ''=20'"=rn"], ['_''_'"rn"],
            
parent::encodeString($string$charset$firstLineOffset$maxLineLength)
        );
    }
}
Онлайн: 1
Реклама