Home
last modified time | relevance | path

Searched refs:strict (Results 1 – 25 of 57) sorted by last modified time

123

/PHP-5.5/tests/classes/
H A Dnew_001.phpt7 echo "Compile-time strict error message should precede this.\n";
33 Compile-time strict error message should precede this.
/PHP-5.5/
H A Dphp.ini-development963 ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
965 ;pdo_odbc.connection_pooling=strict
1389 ; Whether to use strict session mode.
1744 ; enable strict encoding detection.
H A Dphp.ini-production963 ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
965 ;pdo_odbc.connection_pooling=strict
1389 ; Whether to use strict session mode.
1744 ; enable strict encoding detection.
/PHP-5.5/ext/tidy/tests/
H A D020.phpt27 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
/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) );
H A Dbase64_decode_variation_001.phpt5 /* Prototype : proto string base64_decode(string str[, bool strict])
19 $strict = true;
81 $output = base64_decode($value, $strict);
H A Dbase64_decode_variation_002.phpt5 /* Prototype : proto string base64_decode(string str[, bool strict])
77 // loop through each element of the array for strict argument
/PHP-5.5/ext/standard/tests/array/
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
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 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_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
/PHP-5.5/ext/standard/
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)
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()

Completed in 55 milliseconds

123