请帮助我使用PHP创建肥皂请求。我必须获取库存和产品详细信息。用于添加API。
无需创建肥皂客户端,您可以轻松创建xml表单并发送请求
function SendRequest($url,$data){
global $curl; //initiate curl
$curl->setHeader('Content-Type','text/xml');
$xml = new DOMDocument( '1.0', 'UTF-8');
$ocs_request=$xml->createElement("ocsRequest");
foreach($data As $key=>$value){
${$key} = $xml->createElement($key,$value);
$ocs_request->appendChild(${$key});
}
$xml->appendChild($ocs_request);
$xml = $xml->saveXML();
$post = $curl->post($url,$xml); //you can change post, get depending on your request type
return $post;
}