本文整理汇总了PHP中Api::getKey方法的典型用法代码示例。如果您正苦于以下问题:PHP Api::getKey方法的具体用法?PHP Api::getKey怎么用?PHP Api::getKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Api
的用法示例。
在下文中一共展示了Api::getKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
function add($ip, &$errors)
{
global $cfg;
$passphrase = $cfg->getAPIPassphrase();
if (!$passphrase) {
$errors['err'] = 'API passphrase missing.';
}
if (!$ip || !Validator::is_ip($ip)) {
$errors['ip'] = 'Valid IP required';
} elseif (Api::getKey($ip)) {
$errors['ip'] = 'API key for the IP already exists';
}
$id = 0;
if (!$errors) {
$sql = 'INSERT INTO ' . API_KEY_TABLE . ' SET created=NOW(), updated=NOW(), isactive=1' . ',ipaddr=' . db_input($ip) . ',apikey=' . db_input(strtoupper(md5($ip . md5($passphrase))));
//Security of the apikey is not as critical at the moment
if (db_query($sql)) {
$id = db_insert_id();
}
}
return $id;
}