21 lines
302 B
PHP
21 lines
302 B
PHP
<?php
|
|
|
|
namespace App\Paper;
|
|
|
|
|
|
class HtmlToPos
|
|
{
|
|
|
|
|
|
private function handleNewLine($text)
|
|
{
|
|
return str_replace(['<br>', '<br/>', '<br />'], "\n", $text);
|
|
}
|
|
|
|
public function convert($html = '')
|
|
{
|
|
$posText = $this->handleNewLine($html);
|
|
return $posText;
|
|
}
|
|
|
|
} |