/PHP-7.3/ext/tokenizer/tests/ |
H A D | token_get_all_variation14.phpt | 14 * unknown tokens - T_UNKNOWN(307) 17 echo "*** Testing token_get_all() : with invalid/unknown tokens ***\n"; 19 // with valid php tags and invalid tokens 20 echo "-- with valid PHP tags & invlid tokens --\n"; 30 echo "-- with invlalid PHP open tag & valid tokens --\n"; 35 // with invalid PHP tags and invalid tokens 36 echo "-- with invalid PHP tags and tokens --\n"; 43 *** Testing token_get_all() : with invalid/unknown tokens *** 44 -- with valid PHP tags & invlid tokens -- 257 -- with invlalid PHP open tag & valid tokens -- [all …]
|
H A D | token_get_all_variation11.phpt | 2 Test token_get_all() function : usage variations - with control structure tokens 24 echo "*** Testing token_get_all() : for control structure tokens ***\n"; 27 echo "-- with if..elseif..else..tokens --\n"; 43 echo "-- with while..., do..while, switch & continue tokens --\n"; 56 echo "-- with for..foreach( as ) tokens --\n"; 68 echo "-- with switch...case tokens --\n"; 79 *** Testing token_get_all() : for control structure tokens *** 80 -- with if..elseif..else..tokens -- 442 -- with while..., do..while, switch & continue tokens -- 664 -- with for..foreach( as ) tokens -- [all …]
|
H A D | token_get_all_TOKEN_PARSE_002.phpt | 7 $tokens = token_get_all('<?php 15 array_walk($tokens, function($tk) {
|
H A D | bug54089.phpt | 16 $tokens = token_get_all($code); 17 var_dump($tokens); 20 foreach ($tokens as $t)
|
H A D | token_get_all_TOKEN_PARSE_001.phpt | 7 $tokens = token_get_all('<?php 22 array_walk($tokens, function($tk) {
|
H A D | token_get_all_variation10.phpt | 2 Test token_get_all() function : usage variations - with constant tokens 8 * Description: splits the given source into an array of PHP languange tokens 17 * bool const (no tokens specified) - T_UNKNOWN(307) 18 * null const (no tokens specified) - T_UNKNOWN(307)
|
H A D | token_get_all_variation17.phpt | 8 * Description: splits the given source into an array of PHP languange tokens 36 $tokens = token_get_all($source); 37 var_dump($tokens);
|
H A D | token_get_all_variation12.phpt | 8 * Description: splits the given source into an array of PHP language tokens 31 // parsing __CLASS__, __TRAIT__ and __FUNCTION__ tokens 44 // parsing __LINE__ and __METHOD__ tokens
|
H A D | token_get_all_variation2.phpt | 8 * Description: splits the given source into an array of PHP languange tokens 14 * Arithmetic operators: +, -, *, /, % are not listed as specific operator tokens,
|
H A D | token_get_all_error.phpt | 8 * Description: splits the given source into an array of PHP languange tokens
|
H A D | token_get_all_variation18.phpt | 8 * Description: splits the given source into an array of PHP languange tokens
|
H A D | token_get_all_basic.phpt | 8 * Description : splits the given source into an array of PHP languange tokens
|
H A D | token_get_all_variation3.phpt | 8 * Description: splits the given source into an array of PHP languange tokens 13 * Passing 'source' argument with different logical operators to test them for tokens
|
H A D | token_get_all_variation16.phpt | 8 * Description: splits the given source into an array of PHP languange tokens 53 $tokens = token_get_all($source); 54 var_dump($tokens);
|
H A D | token_get_all_variation13.phpt | 8 * Description: splits the given source into an array of PHP languange tokens 53 $tokens = token_get_all($source); 54 var_dump($tokens);
|
/PHP-7.3/Zend/tests/ |
H A D | bug69758.phpt | 5 $tokens = array(); 8 $tokens[$i] = $conditions;
|
H A D | bug76439_2.phpt | 2 Bug #76439: Don't always strip leading whitespace from heredoc T_ENCAPSED_AND_WHITESPACE tokens (er…
|
H A D | bug76439.phpt | 2 Bug #76439: Don't always strip leading whitespace from heredoc T_ENCAPSED_AND_WHITESPACE tokens
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | strtok_variation6.phpt | 2 Test strtok() function : usage variations - invalid escape sequences as tokens 6 …* Description: splits a string (str) into smaller strings (tokens), with each token being delimite… 16 // defining arrays for input strings and tokens
|
H A D | strtok_variation5.phpt | 6 …* Description: splits a string (str) into smaller strings (tokens), with each token being delimite… 16 // defining arrays for input strings and tokens
|
H A D | strtok_basic.phpt | 6 …* Description: splits a string (str) into smaller strings (tokens), with each token being delimite…
|
H A D | strtok_error.phpt | 6 …* Description: splits a string (str) into smaller strings (tokens), with each token being delimite…
|
/PHP-7.3/scripts/dev/ |
H A D | find_tested.php | 210 $tokens = token_get_all($r[1]); 211 $functions = array_filter($tokens, 'filter_functions');
|
/PHP-7.3/ext/filter/ |
H A D | logical_filters.c | 921 int tokens, length, i, offset, exp_separator_set; in php_filter_validate_mac() local 939 tokens = 3; in php_filter_validate_mac() 944 tokens = 6; in php_filter_validate_mac() 949 tokens = 6; in php_filter_validate_mac() 964 for (i = 0; i < tokens; i++) { in php_filter_validate_mac() 967 if (i < tokens - 1 && input[offset + length] != separator) { in php_filter_validate_mac()
|
/PHP-7.3/appveyor/ |
H A D | build.bat | 26 for /f "tokens=*" %%a in ('type %PHP_BUILD_CACHE_SDK_DIR%\VERSION') do set GOT_SDK_VER=%%a
|