View Single Post
Old 01-22-2009, 09:35 PM   #4 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Quote:
Originally Posted by Wildhoney View Post
Do you mean something like this?

php Code:
class TalkPHP_Callback
{
    public function get($aCaptured)
    {
        return $aCaptured[1];
    }
}

$pCallback = new TalkPHP_Callback();
echo preg_replace_callback('~I Love (.+)~', array($pCallback, 'get'), 'I Love TalkPHP');

Yes but it keeps saying argument 2 of preg_replace_callback is an invalid callback. I used create_function() and that seems to be doing something, I haven't tested all the code of that yet, so I'll get back on to this topic.
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote