Skip to content

Panoptik/yii-handy-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

There are a couple of useful classes which can help to work with yii framework

Now there are presented only one class Debug

You can use it in any code of project safely

<?php

$int = 5;
$str = 'Hi';
$array = ['123', 232, 'test'];
$obj = new StdClass();
$obj->testprop = 12;


// yii 1
Debug::bc($int, $str, $array, $obj);

// yii 2
\app\components\Debug::bc($int, $str, $array, $obj);

Open browser console (developed for Google Chrome, so other browser console representation can be shown incorrect)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages