本文整理汇总了PHP中LightOpenID::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP LightOpenID::__construct方法的具体用法?PHP LightOpenID::__construct怎么用?PHP LightOpenID::__construct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LightOpenID
的用法示例。
在下文中一共展示了LightOpenID::__construct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function __construct()
{
parent::__construct(PROTOCOL . HTTP_HOST);
if (!$this->mode) {
if (isset($_REQUEST['openid_identifier'])) {
$this->identity = $_REQUEST['openid_identifier'];
$this->required = array('contact/email');
$this->optional = array('namePerson', 'namePerson/friendly');
header('Location: ' . $this->authUrl());
exit;
} else {
HTTP::redirectTo('index.php?code=4');
}
}
}
示例2: __construct
/**
* 建構函式,呼叫父類別的建構函式,傳入host參數
*/
public function __construct()
{
parent::__construct(app('request')->getHttpHost());
}
示例3:
function __construct()
{
parent::__construct();
}