| 1 |
<? |
<? |
| 2 |
|
|
| 3 |
function split_line($str,$prefix="",$width=75) |
function split_line($str,$prefix="",$width=76) |
| 4 |
{ |
{ |
| 5 |
$lines = array(); |
$lines = array(); |
| 6 |
$lines_count = 0; |
$lines_count = 0; |
| 42 |
return $result; |
return $result; |
| 43 |
} |
} |
| 44 |
|
|
| 45 |
function str_process($str,$prefix="",$width=75) |
function str_process($str,$prefix="",$width=76) |
| 46 |
{ |
{ |
| 47 |
$result = ""; |
$result = ""; |
| 48 |
|
|
| 49 |
$lines = explode("\n",str_replace("\r\n","\n",$str)); |
$lines = explode("\n",str_replace("\r\n","\n",$str)); |
| 50 |
|
|
| 51 |
foreach($lines as $line) |
foreach($lines as $tmp => $line) |
| 52 |
{ |
{ |
| 53 |
$result .= split_line($line[0],$prefix,$width); |
$result .= split_line($line,$prefix,$width); |
| 54 |
} |
} |
| 55 |
|
|
| 56 |
return $result; |
return $result; |
| 61 |
$result = ""; |
$result = ""; |
| 62 |
$l = 0; |
$l = 0; |
| 63 |
$lines = explode("\n",str_replace("\r\n","\n",$str)); |
$lines = explode("\n",str_replace("\r\n","\n",$str)); |
| 64 |
foreach($lines as $line) |
foreach($lines as $tmp => $line) |
| 65 |
{ |
{ |
| 66 |
$result .= ($line[0]."\r\n"); |
$result .= ($line."\r\n"); |
| 67 |
$l += (strlen($line[0])/256 + 1); |
$l += (strlen($line)/256 + 1); |
| 68 |
if ($l >= $max_line) |
if ($l >= $max_line) |
| 69 |
break; |
break; |
| 70 |
} |
} |