1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
| <?php
namespace app\utils;
use Exception; use GuzzleHttp\Psr7\Response; use GuzzleHttp\Exception\ClientException;
class API { protected $output = true;
protected $list = [];
const TYPE_COUNT = 0x0;
const TYPE_PARAM = 0x1;
const TYPE_INFO = 0x2;
const TYPE_REMARK = 0X3;
const TYPE_HTTP = 0X4;
const TYPE_EXCEPTION = 0X5;
public function add_count (string $key, string $value) { $this->list[] = [ 'type' => self::TYPE_COUNT, 'key' => $key, 'value' => $value, ]; }
public function add_param (string $key, $value) { $this->list[] = [ 'type' => self::TYPE_PARAM, 'key' => $key, 'value' => $value, ]; }
public function add_log (string $key, $value) { $this->list[] = [ 'type' => self::TYPE_INFO, 'key' => $key, 'value' => $value, ]; }
public function add_remark (string $content) { $this->list[] = [ 'type' => self::TYPE_REMARK, 'value' => $content, ]; }
public function add_http ($http) { $this->list[] = [ 'type' => self::TYPE_HTTP, 'http' => $http, ]; }
public function add_exception (Exception $e) { $this->list[] = [ 'type' => self::TYPE_EXCEPTION, 'exception' => [ 'file' => $e->getFile(), 'code' => $e->getCode(), 'line' => $e->getLine(), 'message' => $e->getMessage(), 'trace' => $e->getTraceAsString(), ], ]; }
public function get_output (): bool { return (bool) $this->output; }
public function set_output (bool $value) { $this->output = $value; }
public function get_data (): array { return $this->list; }
public function __destruct () { if (!$this->output) { return; }
trace(str_pad(date('Y-m-d H:i:s'), 80, '-', STR_PAD_BOTH));
foreach ($this->list as $item) { if ($item['type'] === self::TYPE_COUNT) { trace(sprintf('[常量] %s=%s', $item['key'], $item['value'])); } else if ($item['type'] === self::TYPE_PARAM) { trace(sprintf('[变量] %s', $item['key'])); trace($item['value']); } else if ($item['type'] === self::TYPE_INFO) { trace(sprintf('%s %s', $item['key'], $item['value'])); } else if ($item['type'] === self::TYPE_REMARK) { trace($item['value']); } else if ($item['type'] === self::TYPE_HTTP) { if ($item['http'] instanceof Response) { trace(sprintf('接口请求完成 %d-%s', $item['http']->getStatusCode(), $item['http']->getReasonPhrase()));
trace('返回 Header:');
foreach ($item['http']->getHeaders() as $name => $values) { trace(sprintf('%s=%s', $name, implode(' ', $values))); }
trace(sprintf('返回内容:%s', $item['http']->getBody()->getContents())); } } else if ($item['type'] === self::TYPE_EXCEPTION) { $e = $item['exception'];
trace(sprintf('%s:%s|%d %s', '异常', $e['file'], $e['line'], $e['message'] . time())); trace($e['trace']); } }
trace(str_pad('', 80, '-')); } }
|