芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/public_html/wp-content/plugins/loginizer/lib/hybridauth/Exception/Exception.php
getCode(); $message = $this->getMessage(); $file = $this->getFile(); $line = $this->getLine(); $trace = $this->getTraceAsString(); $html = sprintf('
%s
', $title); $html .= '
Hybridauth has encountered the following error:
'; $html .= '
Details
'; $html .= sprintf('
Exception:
%s
', get_class($this)); $html .= sprintf('
Message:
%s
', $message); $html .= sprintf('
File:
%s
', $file); $html .= sprintf('
Line:
%s
', $line); $html .= sprintf('
Code:
%s
', $code); $html .= '
Trace
'; $html .= sprintf('
%s
', $trace); if ($object) { $html .= '
Debug
'; $obj_dump = print_r($object, true); // phpcs:ignore $html .= sprintf('
' . get_class($object) . '
extends
' . get_parent_class($object) . '
%s
', $obj_dump); } $html .= '
Session
'; $session_dump = print_r($_SESSION, true); $html .= sprintf('
%s
', $session_dump); // phpcs:ignore echo sprintf("
%s
%s", $title, $html); } }