I tried
$string = "['1','2','3']";
$string = explode("'",$string);
I got
"[1,2,3]"
but i want output like this
[1,2,3]
can you help me to achive that output?
I tried
$string = "['1','2','3']";
$string = explode("'",$string);
I got
"[1,2,3]"
but i want output like this
[1,2,3]
can you help me to achive that output?