public function postXml($url, array $data) { // pack xml $xml = $this->arrayToXml($data); // curl post $ch = curl_init(); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); cur…