当前位置: 首页>>代码示例>>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;未经允许,请勿转载。