如何将多个xml文件传递给api响应

时间:2019-11-28 07:19:51

标签: php json xml rest api

是否有最佳实践,如何从php rest API 多个xml文件传递给json 响应?我应该使用json吗?

我有php rest API,我需要创建一个端点,该端点返回多个xml文件。

类似这样的东西:

    $xmlFiles = $this->InvoiceManager->getXMLInvoices($from, $to); // this return array of xml files

    $response = $response->writeBody(Json::encode($xmlFiles));

    return $response;

非常感谢您提供任何想法。

0 个答案:

没有答案