Exemplo n.º 1
0
 /**
  * Returns a string with a list of ascii-values for the first $characters characters in $string
  * Usage: 0
  *
  * @param	string		String to show ASCII value for
  * @param	integer		Number of characters to show
  * @return	string		The string with ASCII values in separated by a space char.
  * @deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::ordinalValue instead
  */
 public static function debug_ordvalue($string, $characters = 100)
 {
     self::logDeprecatedFunction();
     return t3lib_utility_Debug::ordinalValue($string, $characters);
 }