本文整理匯總了PHP中Zend_Uri::getScheme方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Uri::getScheme方法的具體用法?PHP Zend_Uri::getScheme怎麽用?PHP Zend_Uri::getScheme使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Uri
的用法示例。
在下文中一共展示了Zend_Uri::getScheme方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: toRefererUrl
protected function toRefererUrl(Zend_Uri $uri)
{
if ($uri->getPort() == '80') {
return $uri->getScheme() . '://' . $uri->getHost() . $uri->getPath() . $uri->getQuery();
}
return (string) $uri;
}
示例2: setUri
/**
* Sets the URI of the remote site. Setting a new URI will automatically
* clear the response properties.
*
* @param string|Zend_Uri $uri
* @return void
*/
public final function setUri($uri)
{
// Accept a Zend_Uri object or decompose a URI string into a Zend_Uri.
if ($uri instanceof Zend_Uri) {
$this->_uri = $uri;
} else {
// $uri string will be validated automatically by Zend_Uri.
$this->_uri = Zend_Uri::factory($uri);
}
// Explicitly set the port if it's not already.
if (!$this->_uri->getPort() && $this->_uri->getScheme() == 'https') {
$this->_uri->setPort(443);
} else {
if (!$this->_uri->getPort()) {
$this->_uri->setPort(80);
}
}
}
示例3: toUrl
/**
* ignore port and fragment
* for match siteinfo(wedata)'s url-regex
*
*/
private function toUrl(Zend_Uri $uri)
{
$port = $uri->getPort();
$port = ($port > 0 and $port != '80') ? ':' . $port : '';
return $uri->getScheme() . '://' . $uri->getHost() . $port . $uri->getPath() . $uri->getQuery();
}