this must be a really simple thing, but I'm probably going in a wrong direction.
I have a sting:
$str = 33,34,55,67;
I need to turn it into an array
[22] => [33], [34] => [34], [55] => [55], [67] => [67]
I tried expload but got the wrong results
$arrayNew = implode(",", $str);
// result
[0] => [33], [1] => [34], [2] => [55], [3] => [67]