In PHP what is the difference between using \1 or $1 as $replacement in preg_replace()?
They both work and seem to do the exact same thing, but I think I'm missing something here.
|
|
In PHP what is the difference between using \1 or $1 as $replacement in preg_replace()? They both work and seem to do the exact same thing, but I think I'm missing something here.
|
||
|
|
|
|
You're not missing anything. There is only one situation where $n only can be used:
Aside from that, there is absolutely no difference between the two. |
||
|
|