View Single Post
Old 03-10-2010, 10:37 PM   #4 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

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 ) );
delayedinsanity is offline  
Reply With Quote
The Following User Says Thank You to delayedinsanity For This Useful Post:
JayGarland (03-13-2010)