when run var_dump($myVariable)
I have this string, this variable is not json :
string(13) "['1','2','3']"
but I want have this:
array(3) { [0]=> string(1) "1" [1]=> string(1) "2" [2]=> string(1) "3" }
how can I convert $myVariable to second format