Home
last modified time | relevance | path

Searched refs:strict (Results 26 – 50 of 57) sorted by path

123

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result.phpt225 // don't care about date() strict TZ warnings...
H A Dmysqli_stmt_get_result_types.phpt183 // don't care about date() strict TZ warnings...
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog4463 pcre_stack_free, are used. They are always called in strict stacking order,
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt9949 PCRE_EXTRA strict escape parsing N/A
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_subclass.phpt15 // No silly strict mode warnings, please!
/PHP-5.5/ext/soap/
H A Dphp_encoding.c1698 …ml_object(xmlNodePtr node, sdlContentModelPtr model, zval *object, int style, int strict TSRMLS_DC) in model_to_xml_object()
1711 !strict) { in model_to_xml_object()
1767 } else if (strict && model->u.element->nillable && model->min_occurs > 0) { in model_to_xml_object()
1781 if (strict) { in model_to_xml_object()
1814 if (strict) { in model_to_xml_object()
1828 …if (!model_to_xml_object(node, *tmp, object, style, strict && ((*tmp)->min_occurs > 0) TSRMLS_CC))… in model_to_xml_object()
1829 if (!strict || (*tmp)->min_occurs > 0) { in model_to_xml_object()
1833 strict = 1; in model_to_xml_object()
1856 …return model_to_xml_object(node, model->u.group->model, object, style, strict && model->min_occurs… in model_to_xml_object()
/PHP-5.5/ext/standard/
H A Darray.c1182 zend_bool strict = 0; /* strict comparison or not */ in php_search_array() local
1185 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "za|b", &value, &array, &strict) == FAILURE) { in php_search_array()
1189 if (strict) { in php_search_array()
2426 zend_bool strict = 0; /* do strict comparison */ in PHP_FUNCTION() local
2430 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|zb", &input, &search_value, &strict) == FA… in PHP_FUNCTION()
2434 if (strict) { in PHP_FUNCTION()
H A Dbase64.c143 …base64_decode_ex(const unsigned char *str, int length, int *ret_length, zend_bool strict) /* {{{ */ in php_base64_decode_ex() argument
155 if (*current != '=' && ((i % 4) == 1 || (strict && length > 0))) { in php_base64_decode_ex()
171 …if ((!strict && ch < 0) || ch == -1) { /* a space or some other separator character, we simply ski… in php_base64_decode_ex()
244 zend_bool strict = 0; in PHP_FUNCTION() local
247 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &str, &str_len, &strict) == FAILURE) { in PHP_FUNCTION()
250 result = php_base64_decode_ex((unsigned char*)str, str_len, &ret_length, strict); in PHP_FUNCTION()
H A Dbasic_functions.c326 ZEND_ARG_INFO(0, strict)
332 ZEND_ARG_INFO(0, strict)
428 ZEND_ARG_INFO(0, strict)
890 ZEND_ARG_INFO(0, strict)
/PHP-5.5/ext/standard/tests/array/
H A Darray_diff_assoc_variation6.phpt2 Test array_diff_assoc() function : usage variations - strict string comparison check
15 * 2. When doing a strict comparison of string representation
H A Darray_keys_variation_005.phpt14 var_dump(array_keys($arr_resource, $resource1, TRUE)); // strict type checking
16 var_dump(array_keys($arr_resource, $resource2, TRUE)); // strict type checking
H A Darray_search_errors.phpt6 * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
H A Darray_search_variation1.phpt6 * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
51 //strict option OFF
53 //strict option ON
55 //strict option OFF
H A Darray_search_variation2.phpt6 * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
34 /* loop to do loose and strict type check of elements in
43 //strict type checking
H A Darray_search_variation3.phpt6 * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
H A Darray_search_variation4.phpt6 * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
31 //false in strict mode
36 // false in strict mode
54 var_dump( array_search('123abc', array(123), TRUE) ); // false in strict mode
H A Darray_shift_variation5.phpt13 * When done in one statement causes strict error messages.
20 // not following strict standards
H A Din_array_errors.phpt6 * Prototype : bool in_array ( mixed $needle, array $haystack [, bool $strict] )
H A Din_array_variation1.phpt6 * Prototype : bool in_array ( mixed $needle, array $haystack [, bool $strict] )
52 //strict option OFF
54 //strict option ON
56 //strict option OFF
H A Din_array_variation2.phpt6 * Prototype : bool in_array ( mixed $needle, array $haystack [, bool $strict] )
34 /* loop to do loose and strict type check of elements in
43 //strict type checking
H A Din_array_variation3.phpt6 * Prototype : bool in_array ( mixed $needle, array $haystack [, bool $strict] )
H A Din_array_variation4.phpt6 * Prototype : bool in_array ( mixed $needle, array $haystack [, bool $strict] )
34 //false in strict mode
39 // false in strict mode
57 var_dump( in_array('123abc', array(123), TRUE) ); // false in strict mode
/PHP-5.5/ext/standard/tests/url/
H A Dbase64_decode_basic_001.phpt5 /* Prototype : proto string base64_decode(string str[, bool strict])
H A Dbase64_decode_basic_002.phpt2 Test base64_decode() function : basic functionality - strict vs non-strict with non-base64 chars.
5 /* Prototype : proto string base64_decode(string str[, bool strict])
17 echo "\nWhitespace does not affect base64_decode, even with \$strict===true:\n";
24 …chars outside the base64 alphabet are ignored when \$strict===false, but cause failure with \$stri…
38 Whitespace does not affect base64_decode, even with $strict===true:
43 … chars outside the base64 alphabet are ignored when $strict===false, but cause failure with $stric…
H A Dbase64_decode_error_001.phpt5 /* Prototype : proto string base64_decode(string str[, bool strict])
20 $strict = true;
22 var_dump( base64_decode($str, $strict, $extra_arg) );

Completed in 119 milliseconds

123