1. 程式人生 > >搭建 vue2 vue-router2 webpack3 多入口工程

搭建 vue2 vue-router2 webpack3 多入口工程

php

<?php
/**
* Created by PhpStorm.
* User: cjl
* Date: 2017/11/9
* Time: 16:57
* 加息券/紅包過期前三天自動提醒功能,10:00整發送
*/

class MessageSendAction extends Action{
public function run(){
$time = date(‘Y-m-d H:i:s‘);
$destination = CRONTAB_LOG_PATH.date(‘y_m_d‘).‘.log‘;
try{
$pre = C(‘DB_PREFIX‘
);

$msg = ‘"code":10000,"msg":"當日優惠卷提醒短信守護完成","time":"‘ . $time . ‘"‘;
Log::write($msg, ‘info‘,‘‘,$destination);
}catch (Exception $ex){
$msg = ‘"code":10001,"msg":"當日優惠卷提醒短信守護失敗","error": ‘ . $ex->getMessage() . ‘"time":"‘ . $time . ‘"‘;
Log::write($msg
,‘ERR‘,‘‘,$destination);
}
}
}


搭建 vue2 vue-router2 webpack3 多入口工程