PHPRtfLite::convertNewlinesToRtfCode PHP Method

convertNewlinesToRtfCode() public static method

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