本文整理匯總了PHP中Am_HttpRequest::getUrl方法的典型用法代碼示例。如果您正苦於以下問題:PHP Am_HttpRequest::getUrl方法的具體用法?PHP Am_HttpRequest::getUrl怎麽用?PHP Am_HttpRequest::getUrl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Am_HttpRequest
的用法示例。
在下文中一共展示了Am_HttpRequest::getUrl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: resendPostback
function resendPostback()
{
if ($this->plugin->getConfig('resend_postback')) {
$urls = $this->plugin->getConfig('resend_postback_urls');
$urls = explode("\n", $urls);
$urls = array_filter(array_map('trim', $urls));
foreach ($urls as $url) {
try {
$tm = microtime(true);
$this->log->add("Resending postback to [{$url}]");
if ($url == $this->plugin->getPluginUrl('ipn')) {
throw new Am_Exception_Configuration("DO NOT CONFIGURE RESENDING IPN TO ITSELF!");
}
$req = new Am_HttpRequest($url);
$req->setConfig('connect_timeout', 1000);
$req->setConfig('timeout', 2000);
$method = strtoupper($this->request->getMethod());
$req->setMethod($method);
if ($method == 'POST') {
foreach ($this->request->getPost() as $k => $v) {
$req->addPostParameter($k, $v);
}
} else {
$arr = $this->request->getQuery();
$req->setUrl($req->getUrl() . '?' . http_build_query($arr));
}
$req->send();
$tm = sprintf('%.3f', microtime(true) - $tm);
$this->log->add("Postback resent succesfully ({$tm} sec)");
} catch (Exception $e) {
$tm = sprintf('%.3f', microtime(true) - $tm);
$this->log->add("Cannot resend postback ({$tm} sec)");
$this->log->add($e);
}
}
}
}