예제 #1
0
 /**
  * Displays an array as rows in a table. Useful to debug output like an array of database records.
  *
  * @param	mixed		Array of arrays with similar keys
  * @param	string		Table header
  * @param	boolean		If TRUE, will return content instead of echo'ing out.
  * @return	void		Outputs to browser.
  * @deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debugRows instead
  */
 public static function debugRows($rows, $header = '', $returnHTML = FALSE)
 {
     self::logDeprecatedFunction();
     t3lib_utility_Debug::debugRows($rows, $header, $returnHTML);
 }