Skip to content

Instantly share code, notes, and snippets.

@le717
Last active September 17, 2015 01:06
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 le717/0d130eccf21e5c01e4a5 to your computer and use it in GitHub Desktop.
Save le717/0d130eccf21e5c01e4a5 to your computer and use it in GitHub Desktop.
<?php
if (PHP_OS == 'WIN32' || PHP_OS == 'WINNT') {
define('EOL', "\r\n");
} else if (PHP_OS == 'Linux') {
define('EOL', "\n");
} else {
define('EOL', "\n");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment