PHP Array XML?

0 Cevap php

Ben bir XML ihracat için açık kaynak PHP sarıcı düzenlemek için çalışıyorum.

Orijinal:

$new_invoice = array(
    array(
        "Type"=>"ACCREC",
        "Contact" => array(
            "ContactID" => "[contact id]"
        ),
        "Date" => "2010-04-08",
        "DueDate" => "2010-04-30",
        "Status" => "SUBMITTED",
        "LineAmountTypes" => "Exclusive",
        "LineItems"=> array(
            "LineItem" => array(
                array(
                    "Description" => "Just another test invoice",
                    "Quantity" => "2.0000",
                    "UnitAmount" => "250.00",
                    "AccountCode" => "200"
                )
            )
        )
    )
);

Başka LineItem ekledim, bu yüzden bu gibi olmak:

$new_invoice = array(
    array(
        "Type"=>"ACCREC",
        "Contact" => array(
            "ContactID" => "7937FF1D-B135-4BD0-A219-4B621EA3808C"
        ),
        "Date" => "2010-04-08",
        "DueDate" => "2010-04-30",
        "Status" => "DRAFT",
        "LineAmountTypes" => "Exclusive",
        "LineItems"=> array(
            "LineItem" => array(
                array(
                    "Description" => "Just another test invoice",
                    "Quantity" => "2.0000",
                    "UnitAmount" => "250.00",
                    "AccountCode" => "200"
                )
            )
            "LineItem" => array(
                array(
                    "Description" => "Just another test invoice2",
                    "Quantity" => "2.0000",
                    "UnitAmount" => "250.00",
                    "AccountCode" => "200"
                )
            )
        )
    )
);

but I got an error that said "expecting a closing bracket ) It seems that all brackets are there so I am confused.

0 Cevap