Home
last modified time | relevance | path

Searched refs:token (Results 1 – 25 of 47) sorted by last modified time

12

/PHP-5.5/win32/
H A Dsendmail.c438 while (token != NULL) in SendText()
440 SMTP_SKIP_SPACE(token); in SendText()
451 token = strtok(NULL, ","); in SendText()
459 while (token != NULL) in SendText()
461 SMTP_SKIP_SPACE(token); in SendText()
489 while (token != NULL) in SendText()
491 SMTP_SKIP_SPACE(token); in SendText()
514 while (token != NULL) in SendText()
516 SMTP_SKIP_SPACE(token); in SendText()
547 while (token != NULL) in SendText()
[all …]
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_conf.c172 char *token; in fpm_conf_expand_pool_name() local
178 while (*value && (token = strstr(*value, "$pool"))) { in fpm_conf_expand_pool_name()
180 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name()
188 token[0] = '\0'; in fpm_conf_expand_pool_name()
H A Dfpm_log.c104 int token, test; in fpm_log_write() local
143 token = 0; in fpm_log_write()
160 if (!token && *s == '%') { in fpm_log_write()
161 token = 1; in fpm_log_write()
167 if (token) { in fpm_log_write()
168 token = 0; in fpm_log_write()
409 token = 1; in fpm_log_write()
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation10.phpt13 * Using different types of constants in 'source' string to check them for token
H A Dtoken_get_all_variation15.phpt15 …* Testing token_get_all() with heredoc 'source' string with all different types of token and hered…
H A Dtoken_get_all_variation2.phpt13 * Passing 'source' argument with different arithmetic operators to test them for token
H A Dtoken_get_all_variation19.phpt36 // reconstruct a script (without open/close tags) from the token array
37 foreach ($token_array as $token) {
38 if (is_array($token)) {
39 if (strncmp($token[1], '<?php', 5) == 0) {
42 if (strncmp($token[1], '?>', 2) == 0) {
45 $script .= $token[1];
47 $script .= $token;
/PHP-5.5/ext/tokenizer/
H A Dtokenizer.c46 ZEND_ARG_INFO(0, token)
106 zval token; in tokenize() local
115 ZVAL_NULL(&token); in tokenize()
116 while ((token_type = lex_scan(&token TSRMLS_CC))) { in tokenize()
148 if (destroy && Z_TYPE(token) != IS_NULL) { in tokenize()
149 zval_dtor(&token); in tokenize()
151 ZVAL_NULL(&token); in tokenize()
H A Dtokenizer.php18 $token = $tokens[$i]; variable
19 if (is_array($token)) {
20 if ($state == 1 && $token[0] == T_STRING) {
21 $token[1] = preg_replace('!([a-z])([A-Z])!e', '"$1_".strtolower("$2")', $token[1]);
23 } else if ($token[0] == T_FUNCTION) {
26 $chunk = $token[1];
28 $chunk = $token;
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtok_basic.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
18 $token = ' ().';
21 echo "\nThe token string is:\n\"$token\"\n";
25 var_dump( strtok($str, $token) );
29 var_dump( strtok($token) );
40 The token string is:
H A Dstrtok_variation6.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
11 * Testing strtok() : with invalid escape sequences in token
14 echo "*** Testing strtok() : with invalid escape sequences in token ***\n";
32 // when supplied with different string and token values
37 foreach( $token_array as $token ) {
38 var_dump( strtok($string, $token) );
40 var_dump( strtok($token) );
51 *** Testing strtok() : with invalid escape sequences in token ***
H A Dstrtok_variation7.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
17 $token = " ";
20 var_dump( strtok($str, $token) );
25 var_dump( strtok($token) );
30 var_dump( strtok($str, $token) );
35 var_dump( strtok($token) );
H A Dstrtok_error.phpt5 /* Prototype : string strtok ( string $str, string $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
23 $token = ' ';
26 var_dump( strtok($str, $token, $extra_arg) );
H A Dstrtok_variation1.phpt5 /* Prototype : string strtok ( string $str, string $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
16 $token = '-';
92 var_dump( strtok($str, $token) );
H A Dstrtok_variation2.phpt2 Test strtok() function : usage variations - with different token strings
5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
11 * Testing strtok() : with different token strings
14 echo "*** Testing strtok() : with different token strings ***\n";
84 // when $token argument is supplied with different values
86 echo "\n--- Testing strtok() by supplying different values for 'token' argument ---\n";
90 $token = $values [$index];
92 var_dump( strtok($str, $token) );
103 *** Testing strtok() : with different token strings ***
[all …]
H A Dstrtok_variation3.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
H A Dstrtok_variation4.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
H A Dstrtok_variation5.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
11 * Testing strtok() : with miscellaneous combinations of string and token
45 // when supplied with different string and token values
H A Dmoneyformat.phpt22 Warning: money_format(): Only a single %ci or %cn token can be used in %s on line %d
/PHP-5.5/ext/standard/
H A Dstring.c1282 char *token; in PHP_FUNCTION() local
1314 token = tok; in PHP_FUNCTION()
1315 token_end = token + tok_len; in PHP_FUNCTION()
1317 while (token < token_end) { in PHP_FUNCTION()
1318 STRTOK_TABLE(token++) = 1; in PHP_FUNCTION()
1350 token = tok; in PHP_FUNCTION()
1352 while (token < token_end) { in PHP_FUNCTION()
1353 STRTOK_TABLE(token++) = 0; in PHP_FUNCTION()
H A Dphp_fopen_wrapper.c135 char *p, *token; in php_stream_apply_filter_list() local
138 p = php_strtok_r(filterlist, "|", &token); in php_stream_apply_filter_list()
155 p = php_strtok_r(NULL, "|", &token); in php_stream_apply_filter_list()
165 char *p, *token, *pathdup; in php_stream_url_wrap_php() local
329 p = php_strtok_r(pathdup + 1, "/", &token); in php_stream_url_wrap_php()
338 p = php_strtok_r(NULL, "/", &token); in php_stream_url_wrap_php()
H A Dbasic_functions.c2221 ZEND_ARG_INFO(0, token)
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c76262 t = pProgram->token;
76306 pFrame->token = pProgram->token;
87272 int token;
87305 } while( token!=TK_LP && token!=TK_USING );
87394 int token;
87440 if( token==TK_DOT || token==TK_ON ){
87443 } while( dist!=2 || (token!=TK_WHEN && token!=TK_FOR && token!=TK_BEGIN) );
127758 token = tkSEMI;
127766 token = tkWS;
127778 token = tkWS;
[all …]
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug50762.phpt9 public function authToken($token){
38 public function __construct($token){
39 $this->authToken=$token;
/PHP-5.5/ext/session/
H A Dsession.c300 zval **token; in php_session_create_id() local
307 …zend_hash_find(Z_ARRVAL_PP(array), "REMOTE_ADDR", sizeof("REMOTE_ADDR"), (void **) &token) == SUCC… in php_session_create_id()
308 Z_TYPE_PP(token) == IS_STRING in php_session_create_id()
310 remote_addr = Z_STRVAL_PP(token); in php_session_create_id()

Completed in 391 milliseconds

12