Passing by reference instead of by value. In this case just to be clear, because it is a builtin function and will use the var by reference anyway. In user defined functions you will need to do that explicitely.
Peter Be wrote:
Off topic!
Jesus, why doo you use a & in the ereg ??
Whay is the difference between:
ereg($regex, $str, &$reg);
and...
ereg($regex, $str, $reg);
Curious