PHP:implode将数组合并为字符串

最近更新时间 2020-02-02 10:30:20

implode 函数将一个一维数组的值合并为字符串。

implode 函数可以接收两个参数,$glue 表示合并时字符串的分隔符。

函数

implode ( string $glue , array $pieces ) : string
implode ( array $pieces ) : string 
glue
默认为空,合并时分隔符。
pieces
需要合并的数组。

示例

<?php

$pieces = ["北京","上海","重庆"];
$glue = ",";

echo implode($glue, $pieces);
北京,上海,重庆
rss_feed