Recommend this page to a friend! |
![]() |
Info | Documentation | ![]() |
![]() |
![]() |
Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not yet rated by the users | Total: 256 | All time: 7,853 This week: 49![]() |
Version | License | PHP version | Categories | |||
ci-visitorcounter 1.0.0 | Free for non-comm... | 5 | PHP 5, User Management |
Description | Author | |
This class can keep track of visitors to a Web site. |
Visitorcounter is a class y for codeigniter to use this class you must install first the geoip2 via composer
Download GeoLite2 Database reader : add this into your composer.json file
{
"require":
{
"geoip2/geoip2": "~2.0"
}
}
or install via composer
php composer require geoip2/geoip2:~2.0<br/>
To use this class add this line to your controller
$this->library->load('visitorcounter');
$this->visitor->counter->run();
How to get the vist data
$this->library->load('visitorcounter');
//replace the date,year,month you want to display
$this->visitorcounter->read($date,$year,$month);
//For current date
$this->visitorcounter->read();
//Sample output
::1~2019-03-04 02:00 pm~Invalid IP address: ::1~JP~Invalid IP address: ::1
::2~2019-03-04 02:00 pm~Invalid IP address: ::1~PH~Invalid IP address: ::1
::3~2019-03-04 02:01 pm~Invalid IP address: ::1~US~Invalid IP address: ::1
::2~2019-03-04 02:02 pm~Invalid IP address: ::1~PH~Invalid IP address: ::1
::1~2019-03-04 02:60 pm~Invalid IP address: ::1~JP~Invalid IP address: ::1
//Getcurrentdata by array
// getcurrentdata($date,$year,$month)
if($data = $this->visitorcounter->getcurrentdata()){
var_dump($data);
}
//output
array(3) {
[0]=>
array(2) {
["country"]=>
string(2) "JP"
["counter"]=>
int(2)
}
[1]=>
array(2) {
["country"]=>
string(2) "PH"
["counter"]=>
int(2)
}
[2]=>
array(2) {
["country"]=>
string(2) "US"
["counter"]=>
int(1)
}
}
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Doc. | Documentation | ||
![]() |
Class | Class source |
![]() |
/ | test | / | application |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
![]() |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.