Data.php 453 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Zip
 * Date: 16/1/8
 * Time: 16:50
 */

namespace Hood\Utils\Statistic;


class Data
{
    public $begin_time = 0;

    public $uri = '';

    public $ip = '';

    public $time = 0;

    public $post_params = array();

    public $get_params = array();

    public $statistic_path = '/tmp/statistic/';

    public $data = array();

    public $code = 200;

    public $type = 'log';

    public $memory = 0;
}