ThinkPHP

作者: DaveJ | 来源:发表于2018-11-09 10:59 被阅读0次

    Thinkphp根据控制器名称保存日志

    /**
    * 日志写入接口
    * @access public
    * @param array $log 日志信息
    * @return bool
    */
    public function save(array $log = [])
    {
      if ($this->config['single']) {
        $name = is_string($this->config['single']) ? $this->config['single'] : 'single';
        $destination = $this->config['path'] . $name . '.log';
    } else {
      //$cli = PHP_SAPI == 'cli' ? '_cli' : '';
      /*************************start******************************/
      $entity = strtolower(\request()->module());
      $cli = PHP_SAPI == 'cli' ? ($entity ? '_'.$entity : '_cli') : '_'.$entity;
      /************************** end ****************************/
    

    相关文章

      网友评论

          本文标题:ThinkPHP

          本文链接:https://www.haomeiwen.com/subject/abvnxqtx.html