Hi need to change the function ereg_replace("[\]", "", $theData) to preg_replace
| ||||
|
feedback
|
|
To port Also your regx is The correct port is
Also since the char class has just one char there is no real need of char class you can just say:
Since you are replace just a single char, using regex for this is not recommended. You should be using a simple text replacement using
| |||||||||
feedback
|
But I seriously doubt you need that replace at all. most likely you need some other operation. | |||
|
feedback
|