PHP code example of lutov / server_yametrika

1. Go to this page and download the library: Download lutov/server_yametrika library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lutov / server_yametrika example snippets



//...
 new YaMetrika(123456); // Номер счётчика Метрики
$counter->hit('http://example.ru/archive.zip');
//...


//...
 new YaMetrika(123456); // Номер счётчика Метрики
$counter->hit() // Вызов метода необходим для корректной привязки цели к визиту
$counter->reachGoal('submit');
//...


//...
 new YaMetrika(123456); // Номер счётчика Метрики
$counter->file('http://example.ru/archive.zip');
//...


//...
 new YaMetrika(123456); // Номер счётчика Метрики
// Просмотр статистики в отчёте "Параметры визитов", ветка RSS -> User Agent
$counter->params(Array('RSS' => Array('User Agent' => $_SERVER['HTTP_USER_AGENT'])));
//...


nter = new YaMetrika(123456); // Номер счётчика Метрики
// Просмотр статистики в отчёте "Параметры визитов", ветка Robots.txt -> User Agent
$counter->params(Array('Robots.txt' => Array('User Agent' => $_SERVER['HTTP_USER_AGENT'])));

$txt = file_get_contents('robots.txt');

header('Cache-Control: no-cache');
header('Pragma: no-cache');
header('Last-Modified: '.gmdate("D, d M Y H:i:s").' GMT');
header('Content-Type: text/plain');
print $txt;