Created
October 17, 2014 08:22
-
-
Save runningnet/4eec1de52800509e4cee to your computer and use it in GitHub Desktop.
Typo3 Debug und Datenbank debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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