Skip to content

Instantly share code, notes, and snippets.

@Langmans
Created April 10, 2015 07:47
Show Gist options
  • Save Langmans/16f76d52e20b8d11355b to your computer and use it in GitHub Desktop.
Save Langmans/16f76d52e20b8d11355b to your computer and use it in GitHub Desktop.
<?php
function nl2p($string, $class = '')
{
$class_attr = ($class != '') ? ' class="' . $class . '"' : '';
return '<p' . $class_attr . '>' . preg_replace('#(<br\s*?/?>\s*?){2,}#', '</p>' . "\n" . '<p' . $class_attr . '>', nl2br($string, true)) . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment