suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php如何构造数组

$arr = array(
foreach ($list->list as $json) {
"file"=>str_replace('99552', '', $json->path)
}
);

我这样写提示Parse error: syntax error, unexpected T_FOREACH, expecting ')',该如何修改?

ringa_leeringa_lee2830 Tage vor579

Antworte allen(3)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-04-10 17:29:52

    $arr = array(); 
    foreach ($list->list as $json) 
    {
    $arr[] = array(
    "file"=>str_replace('99552', '', $json->path);
    ); 
    }

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-04-10 17:29:52

    $arr = array(); 
    foreach ($list->list as $json) 
    {
        $arr[] = str_replace('99552', '', $json->path);
    }
    var_dump($arr);

    即可。

    Antwort
    0
  • 迷茫

    迷茫2017-04-10 17:29:52

    新手路过学习一下,感谢bio.soyiyuan.com

    Antwort
    0
  • StornierenAntwort