程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> CI(CodeIgniter)簡單統計訪問人數實現方法 原創,cicodeigniter

CI(CodeIgniter)簡單統計訪問人數實現方法 原創,cicodeigniter

編輯:關於PHP編程

CI(CodeIgniter)簡單統計訪問人數實現方法 原創,cicodeigniter


本文實例講述了CI(CodeIgniter)簡單統計訪問人數實現方法。分享給大家供大家參考,具體如下:

廢話不說,先上代碼:

控制器文件:

/application/controllers/hello.php 如下:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Hello extends CI_Controller {
  public function index()
  {
    echo "Hello CodeIgniter!";
  }
  public function showval($name){
    //訪問路徑:http://localhost/ci/index.php/hello/showval/Tom
    $this->name=$name;
    @$num=file_get_contents('./num.txt');//加上@屏蔽警告提示(第一次運行沒有TXT文件會有警告提示)
    $num=$num?$num:0;
    $num++;
    $arr=array('v_name'=>$name,'v_num'=>$num);
    $re=fopen('./num.txt','w');
    fwrite($re,$num);
    fclose($re);
    $this->load->view('test_views',$arr);
  }
}

視圖文件:

/application/views/test_views.php 如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>訪問統計</title>
</head>
<body>
<?php echo $v_name;?>是第 <?php echo $v_num;?> 位訪問者
</body>
</html>

運行結果如下圖所示:

更多關於CodeIgniter框架相關內容感興趣的讀者可查看本站專題:《codeigniter入門教程》

希望本文所述對大家基於CodeIgniter框架的PHP程序設計有所幫助。

您可能感興趣的文章:

  • 2個Codeigniter文件批量上傳控制器寫法例子
  • php實現仿寫CodeIgniter的購物車類
  • codeigniter實現get分頁的方法
  • Codeigniter的dom類用法實例
  • CodeIgniter使用smtp服務發送html郵件的方法
  • Nginx下配置codeigniter框架方法
  • Codeigniter檢測表單post數據的方法
  • Codeigniter校驗ip地址的方法
  • Codeigniter控制器controller繼承問題實例分析

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved