I have an array like below format:
Array(
[0] => 25/1
[1] => 10/1
);
But I want to convert the array so it would look like below format
Array(
[0] => "25/1"
[1] => "10/1"
);
I have already tried lots of things about this issue but can't get the desire solution yet.
Anybody help please ?