當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DatabaseHandler::CheckAuthentication方法代碼示例

本文整理匯總了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;
 }
開發者ID:simonevitale,項目名稱:easyrest-php,代碼行數:49,代碼來源:LogsController.php


注:本文中的DatabaseHandler::CheckAuthentication方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。