Two different syntax works the same way...
Posted: Wed Dec 13, 2006 5:47 am
Hi all,
I can't notice any differences with these codes
and
They are returning same results. The both match character [ literally. What's the difference?
I can't notice any differences with these codes
Code: Select all
preg_match("/\\[/",$str);Code: Select all
preg_match("/\[/",$str);