PHP【知識分享】 數組拼接成字符串
<?php
// 格式: 【二維數組】
Array
(
[0] => Array
(
[topicid] => 1
)
[1] => Array
(
[topicid] => 2
)
[2] => Array
(
[topicid] => 6
)
)
//方法一:
$topicid = ' '; //變量賦值為空
//用foreach 遍歷下二維數組
foreach($arrs as $key=>$vals){
$topicid.=$vals['topicid'].',';
}
// 使用 rtrim() 函數從字符串右端刪除字符:
$topicid = rtrim($topicid, ',');
echo $topicid;
//====================================
結果: 1,2,6
// 方法二:
foreach($ProTopicid as $valueId){
$string = '';
foreach($valueId as $v){
$string.= rtrim($v.',');
}
}