View Single Post
Old 12-10-2010, 12:02 PM  
CamsMaster
Confirmed User
 
Join Date: Mar 2009
Posts: 1,200
Quote:
Originally Posted by Kiopa_Matt View Post
Code:
$lines = explode("\n", $contents);
$new_content = implode("\n", array_map('format_line', $lines));

function format_line($line) {
     $line = '+' . preg_replace("/\s/", "\s+", $line);
     return $line;
}
Or something like that at least should work.
CamsMaster is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote