本文整理汇总了PHP中DatabaseHandler::CheckAuthentication方法的典型用法代码示例。如果您正苦于以下问题:PHP DatabaseHandler::CheckAuthentication方法的具体用法?PHP DatabaseHandler::CheckAuthentication怎么用?PHP DatabaseHandler::CheckAuthentication使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabaseHandler
的用法示例。
在下文中一共展示了DatabaseHandler::CheckAuthentication方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPrivateLogs
/**
* Get Logs
*
* @url GET /logs
*/
public function getPrivateLogs()
{
$authIdUser = parent::CheckAuthentication(true, true);
$logs = null;
if (isset($_GET['action'])) {
$action = $_GET['action'];
} else {
$action = null;
}
if (isset($_GET['agent'])) {
$agent = $_GET['agent'];
} else {
$agent = null;
}
if (isset($_GET['from'])) {
$from = $_GET['from'];
} else {
$from = 0;
}
if (isset($_GET['count'])) {
$count = $_GET['count'];
} else {
$count = 50;
}
$sql = "SELECT Action, Agent, UserEmail, DateTime, Ip, Location FROM Log ";
$sql .= " WHERE LogId > 0 ";
// Filter by action
if ($action != null && strlen($action) > 0) {
$sql .= " AND Action = '" . $action . "' ";
}
// Filter by agent
if ($agent != null && strlen($agent) > 0) {
$sql .= " AND Agent = '" . $agent . "' ";
}
$sql .= " ORDER BY LogId DESC LIMIT {$from}, {$count} ";
$result = $this->mysqli->query($sql) or die($authIssueText);
$recordsCount = mysqli_num_rows($result);
if ($recordsCount >= 1 && $result != null) {
while ($row = mysqli_fetch_array($result)) {
$logs[] = array(Action => $row['Action'], Agent => $row['Agent'], Email => $row['UserEmail'], DateTime => gmdate("D, d M Y H:i:s", $row['DateTime']), Ip => $row['Ip'], Location => $row['Location']);
}
}
return $logs;
}