This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// locate on helpers and load from config/autoload.php $autoload['helper'] | |
// on any place of project call dd([$my, $vars, $to, $see]); and reload de browser | |
if(!function_exists('dd')) | |
{ | |
function dd($params) | |
{ | |
echo '<div id="dbg-screen" style="background-color: #000; color: #00FF10 !important; width: 100%;height: 700px;position: absolute;padding: 10px;top:0;left:0;z-index: 10000; overflow:scroll;">'; | |
echo '<span id="close-btn-dbg" style="position:relative; top:0px; left:95%;">-</span>'; | |
echo '<pre style=" color: #00FF10 !important">'; |