jeudi 28 septembre 2017

SyntaxError: missing ) after argument list [in function] [duplicate]

This question already has an answer here:

I am getting the syntax error:

Uncaught SyntaxError: missing ) after argument list

and the error gives me in this line:

foreach ($ json array as $ name => $ value)

 function assign_post_to_xml($json_array,$cabecera_nombre=null)
    {
        foreach($json_array as $nombre => $valor)
        {
            if (is_array($valor)) 
                assign_post_to_xml($valor,$cabecera_nombre.$nombre."__");
            else
            {
                //writeInLog("Buscando [".$cabecera_nombre.$nombre."]");
                $valor = $_POST[$cabecera_nombre.$nombre];
            }
            $json_array[$nombre]= $valor;
            //writeInLog("Insertando [".$cabecera_nombre.$nombre." -> ".$valor."]");
        }
    }

Why does that error come out?




Aucun commentaire:

Enregistrer un commentaire