摘要:
function excelToArray(){ require_once dirname(__FILE__) . '/Lib/Classes/PHPExcel/IOFactory.php'; //加载excel文件 $filename = dirname(__FILE__).'/result.xl 阅读全文
摘要:
private function getWeeks($now,$weeks=52){ $weeksList = []; for($i=1;$i<=$weeks;$i++){ $week = (int)date("w",$now); //当时是周几 $number = $week == 0 ? 7 : 阅读全文
摘要:
import redis import time import asyncio import sys async def set_expire_do(i): pool = redis.ConnectionPool(host="host", password="pwd", port=6379, db= 阅读全文
摘要:
基础查询model 类 <?php namespace app\models; use MongoDB\BSON\Regex; use MongoDB\BSON\UTCDateTime; use yii\mongodb\ActiveRecord; /** * Class PlatformPayOri 阅读全文
摘要:
* * * * * 从左到右依次是 分时日月周 分钟:0-59 小时:1-23 日期:1-31 月份:1-12 星期:0-6(0表示周日) 03 * * * * 每小时03分执行 01 02 * * * 每天两点01分执行 01 02 3 * * 每个月3号2点01分执行 01 02 3 1 * 每 阅读全文
摘要:
本文主要介绍功能,这里就简单写下关键步骤(安装部署使用都很好上手): 1、安装 MongoDB,强烈建议使用集群模式 2、安装 Etcd3,强烈建议使用集群模式 yum -y install etcd 执行下面的命令,查看etcd: yum list installed |grep -i etcd 阅读全文
摘要:
if (!function_exists('getEncryption')) { /** * 基于base64的数据加密 * @param $data * @return string */ function getEncryption($data){ return base64_encode(gz 阅读全文
摘要:
//首先在common/config/main.php 里components里加入如下代码 //然后下载yii2-redis的扩展类库 地址:http://pan.baidu.com/s/1bpengNt //下载完成之后 把yii2-redis文件夹放到 vendor/yiisoft/ 下 最后 阅读全文
摘要:
Linux操作系统定时任务系统 Cron 入门 cron是一个linux下的定时执行工具,可以在无需人工干预的情况下运行作业。由于Cron 是Linux的内置服务,但它不自动起来,可以用以下的方法启动、关闭这个服务: /sbin/service crond start //启动服务 /sbin/service crond stop //关闭服务 /sbin/servi... 阅读全文
摘要:
// 以 YII框架为例: C 层代码 public function actionIndex() { //php的时间是以秒算。js的时间以毫秒算 date_default_timezone_set("Asia/Hong_Kong");//地区 //配置每天的活动时间段 $starttimestr 阅读全文