I have following array
$type=Array(
[0] => PL
[1] => LWP
[2] => Carry Forward
[3] => SL
);
I want to convert it into String.I used implode function to convert it.
$newarray=implode(",", $type);
but it reurn string like below
PL,LWP,Carry Forward,SL
I want String like below
("PL","LWP","Carry Forward","SL")
Please help me...
$newString = "(" . implode("\",\"", $type) . ")";