Skip to content

Instantly share code, notes, and snippets.

@branchzero
Last active August 29, 2015 14:17
Show Gist options
  • Save branchzero/0afe97fac7cc6b699949 to your computer and use it in GitHub Desktop.
Save branchzero/0afe97fac7cc6b699949 to your computer and use it in GitHub Desktop.
PHP: Convert Multiline To An Array.
<?php
explode("\n", str_replace(array("\r\n", "\r"), array("\n", "\n"), $str));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment