Convert \n lines to array

<?php function convertSlashNLinesToArray($input) { return preg_grep("/(.*)/s", explode("\n", $input)); } $input = "Welcome\nThis snippet will\nconvert paragraph lines\no an array"; $slashNArray = convertSlashNLinesToArray($input); echo '<pre>'; print_r($slashNArray); echo '</pre>';
This method will convert \n lines to array.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.