Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 564 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 564 Bytes

browser screen

print_r() and var_dump() alternative

Printing your data in browser console

Install

composer require izica/php-browser-log

Usage

You need to use this debug in html view. You will see result in browser console(F12, Inspect mode console);

    PhpBrowserLog::log($arg1);
    PhpBrowserLog::log($arg1, $arg2);
    PhpBrowserLog::log(...any args count);

or Aliases

    PhpBrowserLog::pre($arg1);
    pre($arg1, $arg2);