/PHP-7.1/ext/standard/tests/url/ |
H A D | base64_decode_basic_003.phpt | 43 base64 "" non-strict "" strict "" 44 base64 "=" non-strict "" strict false 45 base64 "==" non-strict "" strict false 46 base64 "===" non-strict "" strict false 47 base64 "====" non-strict "" strict false 48 base64 "V" non-strict "" strict false 49 base64 "V=" non-strict "" strict false 50 base64 "V==" non-strict "" strict false 53 base64 "VV" non-strict "U" strict "U" 55 base64 "VV==" non-strict "U" strict "U" [all …]
|
H A D | base64_decode_basic_002.phpt | 2 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 D | base64_decode_error_001.phpt | 5 /* Prototype : proto string base64_decode(string str[, bool strict]) 20 $strict = true; 22 var_dump( base64_decode($str, $strict, $extra_arg) );
|
/PHP-7.1/ext/mbstring/tests/ |
H A D | bug49536.phpt | 7 // non-strict mode 9 // strict mode 11 // non-strict mode 13 // strict mode
|
/PHP-7.1/ext/standard/ |
H A D | base64.c | 136 PHPAPI zend_string *php_base64_decode_ex(const unsigned char *str, size_t length, zend_bool strict)… in php_base64_decode_ex() argument 153 if (!strict) { in php_base64_decode_ex() 188 if (strict && i % 4 == 1) { in php_base64_decode_ex() 193 if (strict && padding && (padding > 2 || (i + padding) % 4 != 0)) { in php_base64_decode_ex() 233 zend_bool strict = 0; in PHP_FUNCTION() local 237 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &str, &str_len, &strict) == FAILURE) { in PHP_FUNCTION() 240 result = php_base64_decode_ex((unsigned char*)str, str_len, strict); in PHP_FUNCTION()
|
/PHP-7.1/ext/dom/tests/ |
H A D | DOMImplementation_createDocumentType_basic.phpt | 12 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"); 17 …html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
/PHP-7.1/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfilter.h | 159 int strict; member 162 …oding_detector * mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict); 163 …oding_detector * mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict); 181 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict); 184 mbfl_identify_encoding2(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict);
|
/PHP-7.1/ext/standard/tests/array/ |
H A D | array_search_variation4.phpt | 6 * 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 D | array_keys_variation_005.phpt | 14 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 D | in_array_variation4.phpt | 6 * 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 D | array_search_variation2.phpt | 6 * 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 D | in_array_variation2.phpt | 6 * 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 D | array_shift_variation5.phpt | 13 * When done in one statement causes strict error messages. 20 // not following strict standards
|
/PHP-7.1/Zend/tests/type_declarations/ |
H A D | strict_call_weak.phpt | 12 // This file uses strict mode, so the call is strict, and float denied for int
|
H A D | strict_nested.phpt | 18 takes_int(1.0); // should fail, strict mode 23 takes_int(1.0); // should fail, strict mode
|
H A D | strict_call_weak_explicit.phpt | 12 // This file uses strict mode, so the call is strict, and float denied for int
|
H A D | weak_include_strict_2.inc | 9 takes_int(1.0); // fails in strict mode
|
H A D | scalar_strict_declaration_placement_005.phpt | 2 Test strict declaration being first operation only 005
|
H A D | scalar_float_with_integer_default_strict.phpt | 2 Float type should allow an integer as default even with strict types
|
H A D | scalar_strict_declaration_placement_004.phpt | 2 Test strict declaration being first operation only 004
|
H A D | scalar_strict_declaration_placement_008.phpt | 2 Test strict declaration block declaration 008
|
/PHP-7.1/Zend/tests/traits/ |
H A D | bug55554d.phpt | 6 // Test mixed constructors from different traits, we are more strict about 9 // here we have a chance to be more strict for the new traits.
|
/PHP-7.1/ext/standard/tests/strings/ |
H A D | bug72264.phpt | 2 Bug #72264 (base64_decode $strict fails with whitespace between padding)
|
H A D | bug72152.phpt | 2 Bug #72152 (base64_decode $strict fails to detect null byte)
|
/PHP-7.1/Zend/tests/ |
H A D | bug48912.phpt | 2 Bug #48912 (Namespace causes unexpected strict behaviour with extract())
|