本文整理汇总了PHP中License::load方法的典型用法代码示例。如果您正苦于以下问题:PHP License::load方法的具体用法?PHP License::load怎么用?PHP License::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类License
的用法示例。
在下文中一共展示了License::load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add_auth_headers
/**
* @param $args
* @param $url
*
* @return mixed
*/
public function add_auth_headers($args, $url)
{
if (strpos($url, $this->api_url) !== 0) {
return $args;
}
$this->license->load();
if (!isset($args['headers'])) {
$args['headers'] = array();
}
$args['headers']['Authorization'] = 'Basic ' . base64_encode(urlencode($this->license->site) . ':' . urlencode($this->license->key));
return $args;
}
示例2: License
<form action="./common/controller.php" method="post" style="padding-left: 10px;">
<input type="hidden" name="action" value="saveLicense"/>
<input type="hidden" name="host" value="<?php
echo $_SERVER['SERVER_NAME'];
?>
"/>
Serial key<br/>
<input type="text" name="serial" id="serial" style="width: 300px;"/>
<p/>
<input type="image" src="./assets/images/save.gif" style="vertical-align: middle;" value="Save"/>
</form>
</div>
<?php
} else {
$l = new License();
$l->load($rawLicense);
?>
Ok, you have a license.
<br/>
Host: <?php
echo $l->host;
?>
<br/>
Serial: <?php
echo $l->serial;
?>
<?php
}
?>
</div>