%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/egp/vendor/yiisoft/yii2-debug/src/actions/db/ |
Upload File : |
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\debug\actions\db; use yii\base\Action; use yii\debug\panels\DbPanel; use yii\web\HttpException; /** * ExplainAction provides EXPLAIN information for SQL queries * * @author Laszlo <github@lvlconsultancy.nl> * @since 2.0.6 */ class ExplainAction extends Action { /** * @var DbPanel */ public $panel; /** * Runs the action. * * @param string $seq * @param string $tag * @return string * @throws HttpException * @throws \yii\db\Exception * @throws \yii\web\NotFoundHttpException if the view file cannot be found * @throws \yii\base\InvalidConfigException */ public function run($seq, $tag) { $this->controller->loadData($tag); $timings = $this->panel->calculateTimings(); if (!isset($timings[$seq])) { throw new HttpException(404, 'Log message not found.'); } $query = $timings[$seq]['info']; $results = $this->panel->getDb()->createCommand('EXPLAIN ' . $query)->queryAll(); $output[] = '<table class="table"><thead><tr>' . implode(array_map(function ($key) { return '<th>' . $key . '</th>'; }, array_keys($results[0]))) . '</tr></thead><tbody>'; foreach ($results as $result) { $output[] = '<tr>' . implode(array_map(function ($value) { return '<td>' . (empty($value) ? 'NULL' : htmlspecialchars($value)) . '</td>'; }, $result)) . '</tr>'; } $output[] = '</tbody></table>'; return implode($output); } }