Skip to content

Instantly share code, notes, and snippets.

@meysampg
Created July 8, 2017 03:10
Show Gist options
  • Save meysampg/f0a4d775b0403df92c52a519431e3ba4 to your computer and use it in GitHub Desktop.
Save meysampg/f0a4d775b0403df92c52a519431e3ba4 to your computer and use it in GitHub Desktop.
define `dd` function for Yii2
<?php
// add anywhere after `require(__DIR__ . '/../vendor/autoload.php');` on index.php file
function dd($v) {
\yii\helpers\VarDumper::dump($v, 10, true);
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment