将数组值分配给PHP变量

时间:2013-04-25 20:39:57

标签: php arrays

我有一些代码可以检查某个变量是否是一个数组。如果是,我想将所有数组值分配给一个逗号分隔的PHP变量。这是代码:

if (is_array($value)) {         
    //Need to assign the array variables to the PHP variable $files, but how?
    $postdata.=$files;          
} else {
    $postdata.=$value;
}  

我尝试使用$files = print_r(array_values($value));,但它似乎对我不起作用。我究竟做错了什么?谢谢。

2 个答案:

答案 0 :(得分:4)

尝试:

$string = implode(',', $array);

答案 1 :(得分:3)

添加以下行:$files= implode(',', $value);