当前位置: 首页>>代码示例>>PHP>>正文


PHP PSU::xmlpp方法代码示例

本文整理汇总了PHP中PSU::xmlpp方法的典型用法代码示例。如果您正苦于以下问题:PHP PSU::xmlpp方法的具体用法?PHP PSU::xmlpp怎么用?PHP PSU::xmlpp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PSU的用法示例。


在下文中一共展示了PSU::xmlpp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: soapRequest

    /**
     * soapRequest
     *
     * make a SOAP request to Zimbra server, returns the XML
     *
     * @since		version 1.0
     * @param	string $body body of page
     * @param	boolean $header
     * @param	boolean $footer
     * @return	string $response
     */
    protected function soapRequest($body, $header = false, $connecting = false)
    {
        $this->error = $this->error_code = null;
        if (!$connecting && !$this->_connected) {
            throw new Exception('zimbra.class: soapRequest called without a connection to Zimbra server');
        }
        if ($header == false) {
            $header = '<context xmlns="urn:zimbra">
	<authToken>' . $this->auth_token . '</authToken>
	<sessionId id="' . $this->session_id . '">' . $this->session_id . '</sessionId>
</context>';
        }
        $soap_message = '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
	<soap:Header>' . $header . '</soap:Header>
	<soap:Body>' . $body . '</soap:Body>
</soap:Envelope>';
        $this->message(sprintf('%s SOAP message: %s', get_class($this), PSU::xmlpp($soap_message, true)));
        curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $soap_message);
        if (!($response = curl_exec($this->_curl))) {
            $this->error = sprintf('%s ERROR: curl_exec - (%s) %s', get_class($this), curl_errno($this->_curl), curl_error($this->_curl));
            if ($this->debug) {
                echo '<hr>';
            }
            return false;
        } elseif (strpos($response, '<soap:Body><soap:Fault>') !== false) {
            $this->error_code = $this->extractErrorCode($response);
            $this->error = sprintf('%s ERROR: %s: %s', get_class($this), $this->error_code, PSU::xmlpp($response, true));
            $this->message($this->error);
            if ($this->debug) {
                echo '<hr>';
            }
            return false;
        }
        $this->message(sprintf('%s SOAP response: %s', get_class($this), PSU::xmlpp($response, true)));
        if ($this->debug) {
            echo '<hr>';
        }
        $this->_num_soap_calls++;
        return $response;
    }
开发者ID:netshell,项目名称:zimbra-api-php,代码行数:51,代码来源:zimbra.class.php


注:本文中的PSU::xmlpp方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。