I was using preg_replace with the '/F' parameter, and it was working
perfectly till v4.0.4pl1.
Now it has been substituted by preg_replace_callback.

Does it work with a class method as a callback function?

If it does, how should it be written?

I'm asking this because in each of these cases:

- preg_replace_callback(/{([A-Z_][A-Z0-9_]*)}/i', $this->callmeback,
$text);
- preg_replace_callback(/{([A-Z_][A-Z0-9_]*)}/i', "\$this->callmeback",
$text);
- preg_replace_callback(/{([A-Z_][A-Z0-9_]*)}/i', '$this->callmeback',
$text);

I get a warning:

preg_replace_callback() requires argument 2, [...], to be a valid
callback

More: there is another drawback. With preg_replace + '/F' parameter I
could
also specify additional parameters in the command line. Now I can't.

Was it really necessary to change it this way?

-------------------------------------------
Gabriele Carioli
Management Innovative Tools S.p.A.
Piazza Falcone Borsellino n. 23
47100 Forlė (FC) - ITALY (EU)
tel. 0039.0543.412941
fax. 0039.0543.412929
http://www.mit.it/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to