是否有最佳实践,如何从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;
非常感谢您提供任何想法。