如何在字符串数组中删除字符('')并在一个字符串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