The tokenizer functions are quite powerful. For example, you can retrieve all of the methods in a given class using an algorithm like:
for each token:
if token is T_FUNCTION then start buffer
if buffer is started then add the current string to the buffer
if token is ( stop buffer
And the great thing is that the class methods will have the right case, so it's a good way to get around the limitations with get_class_methods returning lowercase method names. Also since using a similar algorithm you can read the arguments of a function you can implement Reflections-like functionality into PHP4.
Finally you can use it as a simpler method of extracting Javadoc out of a class file to generate documentation. The util/MethodTable.php class in AMFPHP (http://www.amfphp.org) uses the tokenizer functions to create a method table with all of the arguments, a description, return type, etc. and from that method table it can generate ActionScript that matches the PHP, but it could also be fitted to generate JavaScript, documentation files, or basically anything you put your mind to. I can also see that this could be the base for a class -> WSDL file generator.
CXIII. Tokenizer Functions
소개
The tokenizer functions provide an interface to the PHP tokenizer embedded in the Zend Engine. Using these functions you may write your own PHP source analyzing or modification tools without having to deal with the language specification at the lexical level.
See also the appendix about tokens.
요구 사항
이 확장 모듈을 빌드할 때 외부 라이브러리가 필요하지 않습니다.
설치
Beginning with PHP 4.3.0 these functions are enabled by default. For older versions you have to configure and compile PHP with --enable-tokenizer. You can disable tokenizer support with --disable-tokenizer.
PHP 윈도우 버전에서는 이 확장 모듈에 대한 지원이 포함되어 있습니다. 이 함수들을 이용하기 위해서 추가로 확장 모듈을 읽어들일 필요가 없습니다.
참고: Builtin support for tokenizer is available with PHP 4.3.0.
상수 정의
이 확장 모듈은 다음의 상수를 정의합니다. 이는 확장 모듈을 PHP에 내장했거나, 실행시에 동적으로 읽어들일 경우에만 사용할 수 있습니다.
- T_INCLUDE (integer)
- T_INCLUDE_ONCE (integer)
- T_EVAL (integer)
- T_REQUIRE (integer)
- T_REQUIRE_ONCE (integer)
- T_LOGICAL_OR (integer)
- T_LOGICAL_XOR (integer)
- T_LOGICAL_AND (integer)
- T_PRINT (integer)
- T_PLUS_EQUAL (integer)
- T_MINUS_EQUAL (integer)
- T_MUL_EQUAL (integer)
- T_DIV_EQUAL (integer)
- T_CONCAT_EQUAL (integer)
- T_MOD_EQUAL (integer)
- T_AND_EQUAL (integer)
- T_OR_EQUAL (integer)
- T_XOR_EQUAL (integer)
- T_SL_EQUAL (integer)
- T_SR_EQUAL (integer)
- T_BOOLEAN_OR (integer)
- T_BOOLEAN_AND (integer)
- T_IS_EQUAL (integer)
- T_IS_NOT_EQUAL (integer)
- T_IS_IDENTICAL (integer)
- T_IS_NOT_IDENTICAL (integer)
- T_IS_SMALLER_OR_EQUAL (integer)
- T_IS_GREATER_OR_EQUAL (integer)
- T_SL (integer)
- T_SR (integer)
- T_INC (integer)
- T_DEC (integer)
- T_INT_CAST (integer)
- T_DOUBLE_CAST (integer)
- T_STRING_CAST (integer)
- T_ARRAY_CAST (integer)
- T_OBJECT_CAST (integer)
- T_BOOL_CAST (integer)
- T_UNSET_CAST (integer)
- T_NEW (integer)
- T_EXIT (integer)
- T_IF (integer)
- T_ELSEIF (integer)
- T_ELSE (integer)
- T_ENDIF (integer)
- T_LNUMBER (integer)
- T_DNUMBER (integer)
- T_STRING (integer)
- T_STRING_VARNAME (integer)
- T_VARIABLE (integer)
- T_NUM_STRING (integer)
- T_INLINE_HTML (integer)
- T_CHARACTER (integer)
- T_BAD_CHARACTER (integer)
- T_ENCAPSED_AND_WHITESPACE (integer)
- T_CONSTANT_ENCAPSED_STRING (integer)
- T_ECHO (integer)
- T_DO (integer)
- T_WHILE (integer)
- T_ENDWHILE (integer)
- T_FOR (integer)
- T_ENDFOR (integer)
- T_FOREACH (integer)
- T_ENDFOREACH (integer)
- T_DECLARE (integer)
- T_ENDDECLARE (integer)
- T_AS (integer)
- T_SWITCH (integer)
- T_ENDSWITCH (integer)
- T_CASE (integer)
- T_DEFAULT (integer)
- T_BREAK (integer)
- T_CONTINUE (integer)
- T_OLD_FUNCTION (integer)
- T_FUNCTION (integer)
- T_CONST (integer)
- T_RETURN (integer)
- T_USE (integer)
- T_GLOBAL (integer)
- T_STATIC (integer)
- T_VAR (integer)
- T_UNSET (integer)
- T_ISSET (integer)
- T_EMPTY (integer)
- T_CLASS (integer)
- T_EXTENDS (integer)
- T_OBJECT_OPERATOR (integer)
- T_DOUBLE_ARROW (integer)
- T_LIST (integer)
- T_ARRAY (integer)
- T_LINE (integer)
- T_FILE (integer)
- T_COMMENT (integer)
- T_ML_COMMENT (integer)
참고: T_ML_COMMENT is not defined in PHP 5. All comments in PHP 5 are of token T_COMMENT.
- T_DOC_COMMENT (integer)
참고: T_DOC_COMMENT was introduced in PHP 5.
- T_OPEN_TAG (integer)
- T_OPEN_TAG_WITH_ECHO (integer)
- T_CLOSE_TAG (integer)
- T_WHITESPACE (integer)
- T_START_HEREDOC (integer)
- T_END_HEREDOC (integer)
- T_DOLLAR_OPEN_CURLY_BRACES (integer)
- T_CURLY_OPEN (integer)
- T_PAAMAYIM_NEKUDOTAYIM (integer)
- T_DOUBLE_COLON (integer)
예제
Here is a simple example PHP scripts using the tokenizer that will read in a PHP file, strip all comments from the source and print the pure code only.
- 차례
- token_get_all -- Split given source into PHP tokens
- token_name -- Get the symbolic name of a given PHP token
Tokenizer Functions
23-Jul-2005 01:33
