Skip to content

Instantly share code, notes, and snippets.

@enlacee
Created August 11, 2014 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enlacee/345327a6804585de6657 to your computer and use it in GitHub Desktop.
Save enlacee/345327a6804585de6657 to your computer and use it in GitHub Desktop.
Claen return car (file simple.txt) windows linux
/*
*
\r is carriage return;
\n is line feed.
*
*/
// clean code Even better normalize the text. because you never know what OS visitors uses.
$getdata = str_replace("\r\n", "\n", $getdata);
$arr = explode("\n", $getdata);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment