03-10-2010, 10:37 PM
|
#4 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
You might have to elaborate on what you're trying to do - Tony's solution will work if you want to run two functions on the same content; most functions can easily be nested since they return results as opposed to echoing them to stdout.
The other option if you'd prefer is to simply run the two functions seperately on the same content.
php Code:
$content = bb ( $content ); $content = stripslashes( $content ); // Equivalent to$content = stripslashes( bb ( $content ) );
|
|
|
|