Skip to content

Instantly share code, notes, and snippets.

@Rachind
Created June 9, 2016 07:33
Show Gist options
  • Save Rachind/cc1b2e48ddf8821ff4a5d137f701108e to your computer and use it in GitHub Desktop.
Save Rachind/cc1b2e48ddf8821ff4a5d137f701108e to your computer and use it in GitHub Desktop.
Snippet nl2li
<?php
$list = explode ("\n",$input);
foreach($list as $v) echo '<li>'.trim($v).'</li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment