Two times in the past month I came to the same question: should abbreviations be used in the code or not? In this article I am trying to give my answer to the question.
DEFINTION
Wikipedia defines abbreviation as:
$mySqlResultSet = $GLOBALS['TYPO3_DB']->exec_SELECTquery(...);
or can be as simple as
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(...);
DEFINTION
Wikipedia defines abbreviation as:
An abbreviation (from Latin brevis "short"So the question becomes: should code containis a shortened form of a word or phrase. Usually, but not always, it consists of a letter or group of letters taken from the word or phrase. For example, the word "abbreviation" can itself be represented by the abbreviation "abbr." or "abbrev."
$mySqlResultSet = $GLOBALS['TYPO3_DB']->exec_SELECTquery(...);
or can be as simple as
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(...);
is a shortened form of a word or phrase. Usually, but not always, it consists of a letter or group of letters taken from the word or phrase. For example, the word "abbreviation" can itself be represented by the abbreviation "abbr." or "abbrev."