I have this array
array:5 [▼
0 => "4"
1 => "5"
2 => "6"
3 => "7"
4 => "8"
]
How do I return the values as 4,5,6,7,8
? I have tried encoding into a json string but it returns with unwanted quotes at the beginning and at the end "["4","5","6","7","8"]"
. I do not want the quotes.