Home
last modified time | relevance | path

Searched refs:token_get_all (Results 1 – 25 of 45) sorted by path

12

/php-src/ext/phar/
H A Dmakestub.php6 foreach (token_get_all($s) as $token) {
/php-src/ext/reflection/tests/
H A Dbug64936.phpt16 token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comm…
23 token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comm…
/php-src/ext/tokenizer/tests/
H A D002.phpt2 token_get_all()
17 var_dump(token_get_all($s));
H A D003.phpt2 token_get_all() and wrong parameters
8 var_dump(token_get_all(""));
9 var_dump(token_get_all(0));
10 var_dump(token_get_all(-1));
H A Dattributes.phpt8 $tokens = token_get_all('<?php #[A1(1, 2)] class C1 { }');
H A Dbad_character.phpt2 token_get_all() produces T_BAD_CHARACTER for unexpected characters
15 foreach (token_get_all($code) as $token) {
H A Dbug26463.phpt2 Bug #26463 (token_get_all() does not correctly handle semicolons after T_END_HEREDOC)
16 var_dump(token_get_all($str));
H A Dbug54089.phpt2 Bug #54089 (token_get_all() does not stop after __halt_compiler)
16 $tokens = token_get_all($code);
H A Dbug60097.phpt2 Bug 60097: token_get_all fails to lex nested heredoc
8 var_dump(token_get_all('<?php
H A Dbug67395.phpt8 $powToken = token_get_all('<?php **')[1][0];
11 $powEqualToken = token_get_all('<?php **=')[1][0];
H A Dbug76437.phpt2 Bug #76437 (token_get_all with TOKEN_PARSE flag fails to recognise close tag)
13 $open_tag1 = token_get_all($code)[$index];
14 $open_tag2 = token_get_all($code, TOKEN_PARSE)[$index];
H A Dbug76991.phpt18 foreach (token_get_all($code) as $token) {
H A Dinvalid_large_octal_with_underscores.phpt8 var_dump(token_get_all("<?php 0_10000000000000000000009;"));
H A Dinvalid_octal_dnumber.phpt7 echo token_name(token_get_all('<?php 0177777777777777777777787')[1][0]), "\n";
H A Dno_inline_html_split.phpt10 var_dump(token_get_all(<<<'PHP'
H A Dparse_errors.phpt2 Parse errors during token_get_all()
10 var_dump(token_get_all($code, TOKEN_PARSE));
15 foreach (token_get_all($code) as $token) {
H A Dphp_tag_only.phpt10 foreach (token_get_all("<?php") as $token) {
14 foreach (token_get_all("Foobar<?php") as $token) {
H A Dphp_tag_only_2.phpt10 foreach (token_get_all("<?php") as $token) {
14 foreach (token_get_all("Foobar<?php") as $token) {
H A Dtoken_get_all_TOKEN_PARSE_000.phpt2 Parse errors during token_get_all() with TOKEN_PARSE flag
9 token_get_all('<?php invalid code;', TOKEN_PARSE);
H A Dtoken_get_all_TOKEN_PARSE_001.phpt7 $tokens = token_get_all('<?php
H A Dtoken_get_all_TOKEN_PARSE_002.phpt7 $tokens = token_get_all('<?php
H A Dtoken_get_all_basic.phpt2 Test token_get_all() function : basic functionality
7 echo "*** Testing token_get_all() : basic functionality ***\n";
12 var_dump( token_get_all($source) );
17 var_dump( token_get_all($source) );
22 *** Testing token_get_all() : basic functionality ***
H A Dtoken_get_all_heredoc_nowdoc.phpt2 Flexible heredoc and nowdoc testing with token_get_all
11 $tokens = token_get_all($code, $flags);
H A Dtoken_get_all_variation10.phpt2 Test token_get_all() function : usage variations - with constant tokens
16 echo "*** Testing token_get_all() : 'source' string with different constants ***\n";
40 var_dump( token_get_all($source[$count]));
46 *** Testing token_get_all() : 'source' string with different constants ***
H A Dtoken_get_all_variation11.phpt2 Test token_get_all() function : usage variations - with control structure tokens
19 echo "*** Testing token_get_all() : for control structure tokens ***\n";
35 var_dump( token_get_all($source));
48 var_dump( token_get_all($source));
60 var_dump( token_get_all($source));
69 var_dump( token_get_all($source));
74 *** Testing token_get_all() : for control structure tokens ***

Completed in 23 milliseconds

12