Home
last modified time | relevance | path

Searched refs:token (Results 26 – 50 of 91) sorted by relevance

1234

/PHP-8.0/ext/soap/tests/bugs/
H A Dbug50762.phpt9 public function authToken($token){
38 public function __construct($token){
39 $this->authToken=$token;
/PHP-8.0/ext/standard/tests/strings/
H A Dstrtok_variation7.phpt12 $token = " ";
15 var_dump( strtok($str, $token) );
20 var_dump( strtok($token) );
25 var_dump( strtok($str, $token) );
30 var_dump( strtok($token) );
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug73341.phpt6 $token = 'a:2:{i:0;O:1:"0":2:0s:1:"0";i:0;s:1:"0";a:1:{i:0;C:11:"ArrayObject":7:{x:i:0;r}';
7 $obj = unserialize($token);
/PHP-8.0/ext/intl/locale/
H A Dlocale_methods.c977 char* token = NULL; in add_array_entry() local
1003 while( (token = php_strtok_r(NULL , DELIMITER , &last_ptr)) && (strlen(token)>1) ){ in add_array_entry()
1077 char* token = NULL; in PHP_FUNCTION() local
1108 add_next_index_stringl( return_value, token , strlen(token)); in PHP_FUNCTION()
1110 while( (token = php_strtok_r(NULL , DELIMITER, &saved_ptr)) && (strlen(token)>1) ){ in PHP_FUNCTION()
1111 add_next_index_stringl( return_value, token , strlen(token)); in PHP_FUNCTION()
1165 char* token = 0; in PHP_FUNCTION() local
1239 if( token && (token==cur_lang_tag) ){ in PHP_FUNCTION()
1241 chrcheck = token + (strlen(cur_loc_range)); in PHP_FUNCTION()
1291 if( token && (token==cur_lang_tag) ){ in PHP_FUNCTION()
[all …]
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_log.c102 int token, test; in fpm_log_write() local
141 token = 0; in fpm_log_write()
158 if (!token && *s == '%') { in fpm_log_write()
159 token = 1; in fpm_log_write()
165 if (token) { in fpm_log_write()
166 token = 0; in fpm_log_write()
407 token = 1; in fpm_log_write()
/PHP-8.0/Zend/tests/function_arguments/
H A Dcall_with_only_comma_error.phpt8 Parse error: syntax error, unexpected token "," in %s on line %d
H A Dcall_with_leading_comma_error.phpt8 Parse error: syntax error, unexpected token "," in %s on line %d
H A Dcall_with_multi_trailing_comma_error.phpt8 Parse error: syntax error, unexpected token ",", expecting ")" in %s on line %d
H A Dcall_with_multi_inner_comma_error.phpt8 Parse error: syntax error, unexpected token ",", expecting ")" in %s on line %d
/PHP-8.0/Zend/tests/varSyntax/
H A DglobalNonSimpleVariableError.phpt10 Parse error: syntax error, unexpected token "->", expecting "," or ";" in %s on line %d
/PHP-8.0/Zend/tests/
H A Dnamespaced_name_whitespace.phpt10 Parse error: syntax error, unexpected token "\" in %s on line %d
H A Dlist_011.phpt10 Parse error: syntax error, unexpected token ")", expecting "=" in %s on line %d
H A Dns_trailing_comma_error_03.phpt8 Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
H A Dns_trailing_comma_error_05.phpt8 Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
H A Dbug43343.phpt11 Parse error: syntax error, unexpected token "namespace", expecting ":" in %s on line %d
H A Dns_trailing_comma_error_06.phpt8 Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
H A Dctor_promotion_additional_modifiers.phpt12 Parse error: syntax error, unexpected token "static", expecting variable in %s on line %d
H A Dns_trailing_comma_error_08.phpt8 Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
H A Dns_trailing_comma_error_01.phpt8 Parse error: syntax error, unexpected token "}", expecting identifier or namespaced name or "functi…
H A Dns_trailing_comma_error_07.phpt8 Parse error: syntax error, unexpected token ",", expecting identifier or namespaced name in %s on l…
H A Dns_088.phpt17 Parse error: syntax error, unexpected token "{", expecting "}" in %s on line %d
H A Dns_trailing_comma_error_02.phpt8 Parse error: syntax error, unexpected token ",", expecting identifier or namespaced name or "functi…
/PHP-8.0/Zend/tests/grammar/
H A Dregression_012.phpt12 Parse error: syntax error, unexpected token "foreach", expecting "]" in %s on line %d
H A Dregression_005.phpt14 Parse error: syntax error, unexpected token "return", expecting identifier in %s on line %d
/PHP-8.0/ext/standard/
H A Dphp_fopen_wrapper.c151 char *p, *token = NULL; in php_stream_apply_filter_list() local
154 p = php_strtok_r(filterlist, "|", &token); in php_stream_apply_filter_list()
171 p = php_strtok_r(NULL, "|", &token); in php_stream_apply_filter_list()
182 char *p, *token = NULL, *pathdup; in php_stream_url_wrap_php() local
362 p = php_strtok_r(pathdup + 1, "/", &token); in php_stream_url_wrap_php()
371 p = php_strtok_r(NULL, "/", &token); in php_stream_url_wrap_php()

Completed in 69 milliseconds

1234