rex_formatter::nl2br PHP Method

nl2br() public static method

Formats a string by nl2br.
See also: http://www.php.net/manual/en/function.nl2br.php
public static nl2br ( string $value ) : string
$value string Value
return string
    public static function nl2br($value)
    {
        return nl2br($value);
    }

Usage Example

コード例 #1
0
ファイル: formatter_test.php プロジェクト: staabm/redaxo
 public function testNl2br()
 {
     $value = "very\nloooooong\ntext lala";
     $this->assertEquals("very<br />\nloooooong<br />\ntext lala", rex_formatter::nl2br($value));
 }