http://uk2.php.net/trim
http://uk2.php.net/explode
http://uk2.php.net/implode
http://uk2.php.net/array_map
http://uk2.php.net/explode
http://uk2.php.net/implode
http://uk2.php.net/array_map
PHP trim paragraph
PHP to trim whitespace from begining and end of every line in a paragraph blockinput
<div class="first"> <h5>#name#</h5> <img src=#image# alt=#alt</> <p>#desc#</p> <a href=#url#>#name#</a> </div>
output
<div> <h5>#name#</h5> <img src=#image# alt=#alt</> <p>#desc#</p> <a href=#url#>#name#</a> </div>
PHP code
function trimparagraph($s)
{
// trim whitespace at begining and end of every line in a paragraph block
$s = implode( "\n", array_map( "trim", explode( "\n", $s ) ) ) ;
return $s ;
}
{
// trim whitespace at begining and end of every line in a paragraph block
$s = implode( "\n", array_map( "trim", explode( "\n", $s ) ) ) ;
return $s ;
}
REFERRERS
PHP