本文整理匯總了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;
}