PHPRtfLite::convertNewlinesToRtfCode PHP Метод

convertNewlinesToRtfCode() публичный статический Метод

convert new lines to rtf line breaks
public static convertNewlinesToRtfCode ( string $text ) : string
$text string
Результат string
    public static function convertNewlinesToRtfCode($text)
    {
        // convert breaks into rtf break
        $text = str_replace(array("\r\n", "\n", "\r"), '\\line ', $text);
        return $text;
    }