noalyss Version-9
show-all-variable.php
Go to the documentation of this file.
1<?php
2/**
3 * @file
4 * @brief to be included , show all the variables, only for development purpopse
5 *
6 */
7
8if (DEBUGNOALYSS <= 1 ) return;
9
10$variable = get_defined_vars();
11
12echo \Noalyss\Dbg::hidden_info("All variables", $variable);