phuongdev89 / yii2-debug
Yii2 Debug
Installs: 107
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=7
- yiisoft/yii2-debug: *
This package is auto-updated.
Last update: 2024-11-09 13:13:06 UTC
README
Dependent
Must have phpstorm-protocol before
Composer
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist phuongdev89/yii2-debug "@dev"
or add
"phuongdev89/yii2-debug": "@dev"
to the require section of your composer.json
file.
Configuration
'modules' => [
'debug' => [
'class' => 'phuongdev89\debug\Module',
],
],
or
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'phuongdev89\debug\Module',
];
Backtrace Usage
Use to see traces of given Object
Initialize the backtrace with an existed active record.
Example:
if($model->save()) {
Backtrace::init($model);
}
Save traces to file with json formatted
Example:
$model = new Model;
$model->id = 1;
$model->username = 'test';
if($model->save()) {
Backtrace::init($model)->toFile('@runtime/test.json');
//Output is /runtime/test.json
}
Return json format
Example:
if($model->save()) {
$traceJson = Backtrace::init($model)->toJson();
}
output:
[
{
"function": "actionUpdate",
"class": "backend\\controllers\\UserController",
"type": "->"
},
{
"file": "backend/controllers/UserController.php",
"line": 366,
"function": "save",
"class": "common\\models\\User",
"type": "->"
},
{
"file": "/var/www/tribe/common/models/User.php",
"line": 289,
"function": "toJson",
"class": "phuongdev89\\debug\\db\\Backtrace",
"type": "::"
}
]
Return php array format
Example:
if($model->save()) {
$traceJson = Backtrace::init($model)->toArray();
}
Output:
[
[
"function" => "actionUpdate",
"class" => "backend\\controllers\\UserController",
"type" => "->"
],
[
"file" => "backend/controllers/UserController.php",
"line" => 366,
"function" => "save",
"class" => "common\\models\\User",
"type" => "->"
],
[
"file" => "/var/www/tribe/common/models/User.php",
"line" => 289,
"function" => "toJson",
"class" => "phuongdev89\\debug\\db\\Backtrace",
"type" => "::"
]
]
Automated update the given column with json data
Example:
if($model->save()) {
Backtrace::init($model)->toAttribute('trace');
}