如何在字符串数组中删除字符('')并在一个字符串php中显示结果?
假设以下是我们的字符串数组-
$full_name= '["John Doe","David Miller","Adam Smith"]';
我们希望输出在单个字符串中-
John Doe, David Miller, Adam Smith
为此,请使用json_decode()。
示例
PHP代码如下
<!DOCTYPE html>
<html>
<body>
<?php
$full_name= '["John Doe","David Miller","Adam Smith"]';
$full_name = json_decode($full_name);
$filterData = array_filter(array_map('trim', $full_name));
$output = implode(', ', $filterData);
echo "The Result in one string=",$output;
?>
</body>
</html>输出结果
这将产生以下输出
The Result in one string=John Doe, David Miller, Adam Smith
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短