如何在 PHP 中将数组转换为字符串?


要将数组转换为字符串,可在 PHP 中使用 implode () 的概念。假设我们有如下数组 -

$sentence = array('My','Name','is','John');

要将以上数组转换为字符串 -

,implode(" ",$sentence)

示例

 在线演示

<!DOCTYPE html>
<html>
<body>
<?php
   $sentence = array('My','Name','is','John');
   echo "The string is=",implode(" ",$sentence);
?>
</body>
</html>

输出

The string is = My Name is John

现在,我们来看一个 PHP 代码,在这个代码中,我们也会添加分隔符 -

示例

 在线演示

<!DOCTYPE html>
<html>
<body>
<?php
   $sentence = array('One','Two','Three');
   echo "The string is=",implode("*",$sentence);
?>
</body>
</html>

输出

The string is = One*Two*Three

更新于: 2020 年 10 月 12 日

302 次浏览

开启你的 职业

通过完成该课程获得认证

开始
广告