Searched defs:strict (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_5/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 382 mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict) argument 417 /* set strict flag */ 418 identd->strict = strict; 424 mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict) argument 459 /* set strict flag */ 460 identd->strict = strict; 532 if (!identd->strict || !filter->status) { 635 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict) argument 718 mbfl_identify_encoding2(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict) argument [all...] |
| H A D | mbfilter.h | 152 int strict; member in struct:_mbfl_encoding_detector 155 MBFLAPI extern mbfl_encoding_detector * mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict); 156 MBFLAPI extern mbfl_encoding_detector * mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict); 174 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict); 177 mbfl_identify_encoding2(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict);
|
| /PHP_5_5/ext/mbstring/ |
| H A D | mbstring.c | 377 ZEND_ARG_INFO(0, strict) 3180 /* {{{ proto string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]]) 3186 zend_bool strict=0; local 3194 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|zb", &str, &str_len, &encoding_list, &strict) == FAILURE) { 3229 strict = (zend_bool)MBSTRG(strict_detection); 3243 ret = mbfl_identify_encoding2(&string, elist, size, strict);
|
| /PHP_5_5/ext/mysqli/ |
| H A D | php_mysqli_structs.h | 330 long strict; variable
|
| /PHP_5_5/ext/standard/ |
| H A D | base64.c | 143 PHPAPI unsigned char *php_base64_decode_ex(const unsigned char *str, int length, int *ret_length, zend_bool strict) /* {{{ */ argument 155 if (*current != '=' && ((i % 4) == 1 || (strict && length > 0))) { 171 if ((!strict && ch < 0) || ch == -1) { /* a space or some other separator character, we simply skip over */ 238 /* {{{ proto string base64_decode(string str[, bool strict]) 244 zend_bool strict = 0; local 247 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &str, &str_len, &strict) == FAILURE) { 250 result = php_base64_decode_ex((unsigned char*)str, str_len, &ret_length, strict);
|
| H A D | array.c | 1182 zend_bool strict = 0; /* strict comparison or not */ local 1185 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "za|b", &value, &array, &strict) == FAILURE) { 1189 if (strict) { 1211 /* {{{ proto bool in_array(mixed needle, array haystack [, bool strict]) 1219 /* {{{ proto mixed array_search(mixed needle, array haystack [, bool strict]) 2405 /* {{{ proto array array_keys(array input [, mixed search_value[, bool strict]]) 2415 zend_bool strict = 0; /* do strict comparison */ local 2419 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|zb", &input, &search_value, &strict) [all...] |
Completed in 17 milliseconds