PhpToken::tokenizeSplits given source into PHP tokens, represented by PhpToken objects. Description
public static array PhpToken::tokenize(string
$code, int $flags = 0)
Returns an array of PhpToken objects representing given Parameters
Return ValuesAn array of PHP tokens represented by instances of PhpToken or its descendants. This method returns static[] so that PhpToken can be seamlessly extended. ExamplesExample #1 PhpToken::tokenize example The above examples will output:
Line 1: T_OPEN_TAG ('<?php ')
Line 1: T_ECHO ('echo')
Line 1: ; (';')
Line 1: T_WHITESPACE (' ')
Line 1: T_CLOSE_TAG ('?>')
Example #2 Extending PhpToken The above examples will output: '<?PHP ' See Also
|