Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function format($text)
  2. {
  3. $text = htmlentities($text, ENT_COMPAT, utf-8);
  4. $text = preg_replace('/â../', '"', $text);
  5. $text = preg_replace('/"s/', ''s', $text);
  6. $text = preg_replace('/([^,][\.|"|!])\r\n([A-Z|"])/m', '$1</p><p>$2', $text);
  7. return $text;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement