"T" means "token."
When the PHP code runs, the first step is called " lexical analysis " (or "lexing"). The lexer scans the input text and creates a list of tokens instead. This is the usual (in many languages) use of names prefixed with T for them.
The next step is to interpret these tokens, allowing them to be compiled or run directly. This is the first step where PHP takes care of the order of the tokens (in most cases), and therefore you get an error here.
source share