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

以上是 如何在字符串数组中删除字符('')并在一个字符串php中显示结果? 的全部内容, 来源链接: utcz.com/z/353420.html

回到顶部