如何在 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
广告