<?php function pipeExplode($str) { return explode("|", $str); } $text = "sdlkfjsdl|kwflwerflwekr|wlkjlgk4w\n3rtljhrfgkjed|3jhkrjghd|4t44thj\n33rtlhwege|3rth3herjgke|hkjfgdf"; $arr = explode(PHP_EOL, $text); $finalArr = array_map('pipeExplode', $arr); print_r($finalArr);
You have javascript disabled. You will not be able to edit any code.