我有一个这样的数组:
[participants] => Array
(
[0] => 9
[1] => 8
[2] => 12
)
我想把它放在另一个变量中,如下所示:
“9,8,12”
我尝试使用下面的代码,但它没有输出任何内容:
$mem = "";
for($i = 0; $i < count($participants); $i++)
{
$mem.$participants[$i];
}
echo $mem;
可能是什么问题?