Skip to content

Instantly share code, notes, and snippets.

@dcinzona
Created April 23, 2012 23:41
Show Gist options
  • Save dcinzona/2474639 to your computer and use it in GitHub Desktop.
Save dcinzona/2474639 to your computer and use it in GitHub Desktop.
Strip new line characters from PHP string
function removeRN($string){
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment