Hello
Is it possible to call a function with a backreference of a regular expression, e.g. something like this:
preg_replace("#test(.*?)test#", thefunction('\1'), $subject);
I know it doesnt work in THIS way, but how does it work?
Thanks for your answers.