在过去的 1 1/2 天里,我一直在尝试将 16 行 ID 存储到一个字符串中,并用逗号分隔每个 ID。我得到的数组来自 MySQL。我得到的错误是
implode() 函数:传递了无效的参数
$str=array();
$string="";
while($row = mysql_fetch_row($result))
{
$user_id=$row;
$str=$user_id;
foreach($str as $p=>$v){
comma($v);
}
}
function comma($v){
$string= implode(",",$v); echo $string;
}