You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are some shortcuts i have added to my plugins dump.php:
/**
* Shortcuts to dump declared Classes
* Added by Thomas Kahl
*/
function dumpClasses() {
dump( get_declared_classes(), 'Declared Classes');
}
/**
* Shortcuts to dump declared Interfaces
* Added by Thomas Kahl
*/
function dumpInterfaces() {
dump( get_declared_interfaces(), 'Declared Interfaces');
}
/**
* Shortcuts to dump included Files
* Added by Thomas Kahl
*/
function dumpIncludes() {
dump( get_included_files(), 'Included Files');
}
/**
* Shortcuts to dump all defined Functions
* Added by Thomas Kahl
*/
function dumpFunctions() {
dump( get_defined_functions(), 'Defined Functions');
}
/**
* Shortcuts to dump INI-Settings
* Added by Thomas Kahl
*/
function dumpIni() {
dump( ini_get_all(), 'INI-Settings');
}
/**
* Shortcuts to dump HTTP Headers
* Added by Thomas Kahl
*/
function dumpHeaders() {
if(function_exists('getAllHeaders')) dump( getAllHeaders(), 'HTTP Headers');
}
The text was updated successfully, but these errors were encountered:
Here are some shortcuts i have added to my plugins dump.php:
The text was updated successfully, but these errors were encountered: