Hi,
I would like, using str_replace function, replace "((" by "[" and "))" by "]".
I suppose i should use reg expressions and.. i don't have the knowledge..
Basically, not working :
str_replace("((hello))","((","[")
str_replace("((hello))","))","[")
Expected result :
[hello]
Thanks