如何将用逗号分隔的字符串转换为PHP中的双引号?

时间:2017-04-28 03:41:36

标签: php regex

我有一个字符串例如: 苹果,桔子,甜瓜,葡萄,桃子

我想拿这些物品并像这样展示: “苹果”, “橙”, “瓜”, “葡萄”, “桃”

实现这一目标的最佳方式是什么?

1 个答案:

答案 0 :(得分:1)

$string = 'apple,orange,melon,grape,peach';
$string = explode(',', $string);
$string = '"' . implode('","', $string) . '"';
echo $string;

压缩:

$string = 'apple,orange,melon,grape,peach';
echo '"' . implode('","', explode(',', $string)) . '"';