• <bdo id='v8ISR'></bdo><ul id='v8ISR'></ul>

    1. <i id='v8ISR'><tr id='v8ISR'><dt id='v8ISR'><q id='v8ISR'><span id='v8ISR'><b id='v8ISR'><form id='v8ISR'><ins id='v8ISR'></ins><ul id='v8ISR'></ul><sub id='v8ISR'></sub></form><legend id='v8ISR'></legend><bdo id='v8ISR'><pre id='v8ISR'><center id='v8ISR'></center></pre></bdo></b><th id='v8ISR'></th></span></q></dt></tr></i><div id='v8ISR'><tfoot id='v8ISR'></tfoot><dl id='v8ISR'><fieldset id='v8ISR'></fieldset></dl></div>
    2. <tfoot id='v8ISR'></tfoot>

      <small id='v8ISR'></small><noframes id='v8ISR'>

        <legend id='v8ISR'><style id='v8ISR'><dir id='v8ISR'><q id='v8ISR'></q></dir></style></legend>

      1. Laravel 访客柜台

        Laravel visitors counter(Laravel 访客柜台)

            <bdo id='CGojB'></bdo><ul id='CGojB'></ul>
                    <tbody id='CGojB'></tbody>

                1. <i id='CGojB'><tr id='CGojB'><dt id='CGojB'><q id='CGojB'><span id='CGojB'><b id='CGojB'><form id='CGojB'><ins id='CGojB'></ins><ul id='CGojB'></ul><sub id='CGojB'></sub></form><legend id='CGojB'></legend><bdo id='CGojB'><pre id='CGojB'><center id='CGojB'></center></pre></bdo></b><th id='CGojB'></th></span></q></dt></tr></i><div id='CGojB'><tfoot id='CGojB'></tfoot><dl id='CGojB'><fieldset id='CGojB'></fieldset></dl></div>
                  <legend id='CGojB'><style id='CGojB'><dir id='CGojB'><q id='CGojB'></q></dir></style></legend><tfoot id='CGojB'></tfoot>

                  <small id='CGojB'></small><noframes id='CGojB'>

                  本文介绍了Laravel 访客柜台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试在 Laravel 中建立一个访客计数器....

                  I'm trying to build a visitors counter in Laravel....

                  我不知道将代码放入其中以便加载到每个页面上的最佳位置是什么……但我将它放在 routes.php 中……

                  I don't know what the best place is to put the code inside so that it loads on EVERY page... But I putted it inside of the routes.php....

                  我想我最好把它放在 basecontroller 里面?

                  I think I'll better place it inside of basecontroller?

                  但是好吧,我的代码现在看起来像这样:

                  But okay, My code looks like this now:

                      //stats
                  
                  $date = new DateTime;
                  
                  $check_if_exists = DB::table('visitor')->where('ip', $_SERVER['REMOTE_ADDR'])->first();
                  
                  $get_visit_day = DB::table('visitor')->select('visit_date')->where('ip', $_SERVER['REMOTE_ADDR'])->first();
                  
                  $value = date_create($get_visit_day->visit_date);
                  
                  if(!$check_if_exists)
                  {
                  
                      DB::table('visitor')->insert(array('ip' => $_SERVER['REMOTE_ADDR'], 'hits' => '1', 'visit_date' => $date));
                  
                  }else{
                  
                      DB::table('visitor')->where('ip', $_SERVER['REMOTE_ADDR'])->increment('hits');
                  }
                  
                  
                  $value = date_create($get_visit_day->visit_date);
                  
                  if ($check_if_exists && date_format($value, 'd') != date('d')) {
                  
                      DB::table('visitor')->insert(array('ip' => $_SERVER['REMOTE_ADDR'], 'hits' => '1', 'visit_date' => $date));
                  }
                  

                  这很好,但问题是,我的数据库列总是添加一个新值.

                  That works fine, but the problem is, my database columns always add a new value.

                  这是我的数据库:

                  来自表访客".

                  它不断添加一个新的IP,hit和visit_date...

                  It keeps adding a new IP, hit and visit_date...

                  如何仅更新今天(当天)的点击数,如果过了一天,设置新的 IP 值并在该列中计数?

                  How is it possible to just update the hits from today (the day) and if the day is passed, to set a new IP value and count in that column?

                  推荐答案

                  我不是 100% 确定这一点,但你应该能够做这样的事情.它未经测试,可能有更优雅的方式来做,但它是您的起点.

                  I'm not 100% sure on this, but you should be able to do something like this. It's not tested, and there may be a more elegant way to do it, but it's a starting point for you.

                  换桌

                  visit_date (datetime) 列更改为 visit_date (date)visit_time (time) 列,然后创建 id 列作为主键.最后,将 ip + date 设置为唯一键,以确保您不能在一天内输入两次相同的 IP.

                  Change the visit_date (datetime) column into visit_date (date) and visit_time (time) columns, then create an id column to be the primary key. Lastly, set ip + date to be a unique key to ensure you can't have the same IP entered twice for one day.

                  创建 Eloquent 模型

                  这只是为了方便:为表创建一个 Eloquent 模型,这样您就不必一直使用 Fluent(查询构建器):

                  This is just for ease: make an Eloquent model for the table so you don't have to use Fluent (query builder) all the time:

                  class Tracker extends Eloquent {
                  
                      public $attributes = [ 'hits' => 0 ];
                  
                      protected $fillable = [ 'ip', 'date' ];
                      protected $table = 'table_name';
                  
                      public static function boot() {
                          // Any time the instance is updated (but not created)
                          static::saving( function ($tracker) {
                              $tracker->visit_time = date('H:i:s');
                              $tracker->hits++;
                          } );
                      }
                  
                      public static function hit() {
                          static::firstOrCreate([
                                    'ip'   => $_SERVER['REMOTE_ADDR'],
                                    'date' => date('Y-m-d'),
                                ])->save();
                      }
                  
                  }
                  

                  现在你应该可以通过调用这个来做你想做的事了:

                  Now you should be able to do what you want by just calling this:

                  Tracker::hit();
                  

                  这篇关于Laravel 访客柜台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                  <small id='XIWMn'></small><noframes id='XIWMn'>

                  <i id='XIWMn'><tr id='XIWMn'><dt id='XIWMn'><q id='XIWMn'><span id='XIWMn'><b id='XIWMn'><form id='XIWMn'><ins id='XIWMn'></ins><ul id='XIWMn'></ul><sub id='XIWMn'></sub></form><legend id='XIWMn'></legend><bdo id='XIWMn'><pre id='XIWMn'><center id='XIWMn'></center></pre></bdo></b><th id='XIWMn'></th></span></q></dt></tr></i><div id='XIWMn'><tfoot id='XIWMn'></tfoot><dl id='XIWMn'><fieldset id='XIWMn'></fieldset></dl></div>
                    <bdo id='XIWMn'></bdo><ul id='XIWMn'></ul>

                    <tfoot id='XIWMn'></tfoot>
                        <legend id='XIWMn'><style id='XIWMn'><dir id='XIWMn'><q id='XIWMn'></q></dir></style></legend>
                          <tbody id='XIWMn'></tbody>