31 lines
550 B
PHP
31 lines
550 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: ddcai
|
|
* Date: 2018/7/13
|
|
* Time: 17:14
|
|
*/
|
|
|
|
class crontab_base{
|
|
|
|
public function __construct() {
|
|
|
|
}
|
|
/*
|
|
Array(
|
|
"a":字符串,
|
|
"m":字符串,
|
|
"d":数组,
|
|
"token":登陆key
|
|
)
|
|
*/
|
|
protected $arr = array();
|
|
protected $conn = false;
|
|
protected $myredis = false;
|
|
//设置提交上来的数据
|
|
public function get_data($arr,$conn,$myredis){
|
|
$this->arr = $arr;
|
|
$this->conn = $conn;
|
|
$this->myredis = $myredis;
|
|
}
|
|
} |