Skip to content

Instantly share code, notes, and snippets.

@MaxwellRU
Last active October 29, 2019 04:54
Show Gist options
  • Save MaxwellRU/359bbd7300b9c4ad9473d93e10c79bc0 to your computer and use it in GitHub Desktop.
Save MaxwellRU/359bbd7300b9c4ad9473d93e10c79bc0 to your computer and use it in GitHub Desktop.
Функция debug для Битрикс
<?function debug($var, $die = false, $all = false) {
global $USER;
if( $USER->IsAdmin() || $all == true ) { ?>
<font style="text-align: left; font-size: 9px;line-height: 1;display:block;clear:both"><pre><?print_r($var)?></pre></font>
<? } if($die) {
die;
}
}?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment