Konvertuoti BR į „Newline“ CSS-gudrybės

Anonim

1 technika

function br2newline( $input ) ( $out = str_replace( "
", "\n", $input ); $out = str_replace( "
", "\n", $out ); $out = str_replace( "
", "\n", $out ); $out = str_replace( "
", "\n", $out ); $out = str_replace( "
", "\n", $out ); $out = str_replace( "
", "\n", $out ); return $out; )

Pertraukia žymą į naują eilutę - nesvarbu, koks HTML apdorojamas.

2 technika

function br2nl( $input ) ( return preg_replace('//i', "\n", $input); )