Skip to content

Instantly share code, notes, and snippets.

@runningnet
Created October 17, 2014 08:22
Show Gist options
  • Select an option

  • Save runningnet/4eec1de52800509e4cee to your computer and use it in GitHub Desktop.

Select an option

Save runningnet/4eec1de52800509e4cee to your computer and use it in GitHub Desktop.
Typo3 Debug und Datenbank debug
# Allgemeines Debug
t3lib_div::debug($data,'Name der Ausgabe');
# Datenbank debug
# Allgemeines DB Debug
$GLOBALS['TYPO3_DB']->debugOutput = true;
# Wenn man es in einer ext braucht.
$GLOBALS['TYPO3_DB']->store_lastBuiltQuery = true;
// PHP + SQL hier
echo $GLOBALS['TYPO3_DB']->debug_lastBuiltQuery;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment