| 1 |
<? |
<? |
| 2 |
|
|
| 3 |
function split_line($str,$width=75,$pre="") |
function split_line($str,$pre="",$width=75) |
| 4 |
{ |
{ |
| 5 |
$lines = array(); |
$lines = array(); |
| 6 |
$lines_count = 0; |
$lines_count = 0; |
| 38 |
return $result; |
return $result; |
| 39 |
} |
} |
| 40 |
|
|
| 41 |
function add_colon($str,$width=75) |
function str_process($str,$pre="",$width=75) |
| 42 |
{ |
{ |
| 43 |
$result = ""; |
$result = ""; |
| 44 |
|
|
| 46 |
|
|
| 47 |
foreach($lines as $line) |
foreach($lines as $line) |
| 48 |
{ |
{ |
| 49 |
$result .= split_line($line,$width,": "); |
$result .= split_line($line,$pre,$width); |
| 50 |
} |
} |
| 51 |
|
|
| 52 |
return $result; |
return $result; |