Searched defs:separator (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_5/ext/mbstring/ |
| H A D | mb_gpc.h | 34 const char *separator; member in struct:_php_mb_encoding_handler_info_t
|
| H A D | mb_gpc.c | 56 char *res = NULL, *separator=NULL; local 131 separator = (char *) estrdup(PG(arg_separator).input); 134 separator = ";\0"; 154 info.separator = separator; 185 efree(separator); 217 * separator may contain multiple separator chars. 221 for (s2=info->separator; *s2 != '\0'; s2++) { 235 var = php_strtok_r(res, info->separator, [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | url_scanner_ex.c | 107 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const char *separator) argument 169 { sep = separator; goto scan; }
|
| /PHP_5_5/main/ |
| H A D | php_variables.c | 281 char *res = NULL, *var, *val, *separator = NULL; local 354 separator = (char *) estrdup(PG(arg_separator).input); 357 separator = ";\0"; 361 var = php_strtok_r(res, separator, &strtok_buf); 406 var = php_strtok_r(NULL, separator, &strtok_buf); 410 efree(separator);
|
| /PHP_5_5/ext/filter/ |
| H A D | logical_filters.c | 333 php_error_docref(NULL TSRMLS_CC, E_WARNING, "decimal separator must be one char"); 792 char separator; local 797 FETCH_STRING_OPTION(exp_separator, "separator"); 810 separator = '.'; 815 separator = '-'; 820 separator = ':'; 825 if (exp_separator_set && separator != exp_separator[0]) { 830 * a hexadecimal number followed by a separator character. (With the 831 * exception of the last token which does not have the separator.) 836 if (i < tokens - 1 && input[offset + length] != separator) { [all...] |
Completed in 7 milliseconds