本文整理汇总了PHP中Authenticator::getAuthenticationStr方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::getAuthenticationStr方法的具体用法?PHP Authenticator::getAuthenticationStr怎么用?PHP Authenticator::getAuthenticationStr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticator
的用法示例。
在下文中一共展示了Authenticator::getAuthenticationStr方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Seomoz_Authority
/**
* Gets domain and URL authority from SEOmoz.
*
* @access private
* @link http://www.seomoz.org/api The SEOmoz API
* @return array Returns array, containing authority data.
*/
public static function Seomoz_Authority($uri)
{
// external helper class
include_once 'ext/SeoMoz/Authenticator.php';
$authenticator = new Authenticator();
$url = urlencode($uri);
$tmp = SEOstats::cURL('http://lsapi.seomoz.com/linkscape/url-metrics/' . $url . '?' . $authenticator->getAuthenticationStr());
$data = json_decode($tmp);
$result = array('Title' => $data->ut, 'URL' => $data->uu, 'External Links' => $data->ueid, 'Links' => $data->uid, 'URL Authority' => $data->upa, 'URL mozRank' => $data->umrp, 'Subdomain mozRank' => $data->fmrp, 'HTTP Status Code' => $data->us, 'Page Authority' => $data->upa, 'Domain Authority' => $data->pda);
return $result;
}