1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace JinDouYun\Controller\Cron;
- /**
- * Trait Cron
- * @package JinDouYun\Controller\Cron
- */
- trait Cron
- {
- /**
- * Doc: (des="计划任务信息统一输出")
- * User: XMing
- * Date: 2020/11/20
- * Time: 12:00 下午
- * @param string $name
- * @param $msg
- * @param bool $exit
- */
- public static function sendOutput(string $name,$msg = '',bool $exit = false)
- {
- !is_string($msg) && $msg = json_encode($msg,320);
- $debug = '';
- $debug .= '['.date('Y-m-d H:i:s').']';
- $debug .= ' '.__CLASS__.' ';
- !empty($name) && $debug .= $name;
- !empty($msg) && $debug .= ': '.$msg;
- echo $debug.PHP_EOL;
- if ($exit === true) die();
- }
- }
|