| Conditions | 3 |
| Paths | 3 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function nl2br($var) { |
||
| 10 | $parts = explode("\n", $var); |
||
| 11 | $doc = new \DomDocument(); |
||
| 12 | $result = []; |
||
| 13 | |||
| 14 | foreach ($parts as $key => $part) { |
||
| 15 | $new = $doc->createTextNode($part); |
||
| 16 | $result[] = $new; |
||
| 17 | if ($key !== count($parts)-1) { |
||
| 18 | $br = $doc->createElement('br'); |
||
| 19 | $result[] = $br; |
||
| 20 | } |
||
| 21 | } |
||
| 22 | |||
| 23 | return $result; |
||
| 24 | } |
||
| 25 | } |
||
| 26 |