Home
last modified time | relevance | path

Searched refs:strict (Results 76 – 100 of 123) sorted by relevance

12345

/php-src/ext/sodium/tests/
H A Dphp_password_hash_argon2i.phpt10 if (!in_array('argon2i', password_algos(), true /* strict */)) {
H A Dphp_password_hash_argon2id.phpt10 if (!in_array('argon2id', password_algos(), true /* strict */)) {
H A Dphp_password_verify.phpt15 if (!in_array($algo, password_algos(), true /* strict */)) {
/php-src/Zend/tests/match/
H A D017.phpt2 Test strict comparison with match expression jump table
/php-src/ext/mysqli/tests/
H A Dbug35759.phpt26 /* SQL strict mode - [1101] BLOB/TEXT column 'a0' can't have a default value */
H A Dbug51647.phpt56 /* ERROR 1064 (42000): You have an error in your SQL syntax; = sql strict mode */
86 /* ERROR 1064 (42000): You have an error in your SQL syntax; = sql strict mode */
/php-src/Zend/tests/function_arguments/
H A Dargument_count_incorrect_userland_strict.phpt2 Call userland function with incorrect number of arguments with strict types
/php-src/Zend/tests/
H A Darginfo_zpp_mismatch_strict.phpt2 Test that there is no arginfo/zpp mismatch in strict mode
/php-src/ext/mbstring/
H A Dmbstring.h70 …hs, size_t n, const mbfl_encoding **elist, unsigned int elist_size, bool strict, bool order_signif…
H A Dmbstring.c3245 if (strict) { in init_candidate_array()
3293 static size_t count_demerits(struct candidate *array, size_t length, bool strict) in count_demerits() argument
3304 while ((strict || length > 1) && finished < length) { in count_demerits()
3317 if (strict) { in count_demerits()
3353 if (strict) { in mb_guess_encoding_for_strings()
3368 …elist_size = init_candidate_array(array, elist_size, elist, strings, str_lengths, n, strict, order… in mb_guess_encoding_for_strings()
3372 elist_size = count_demerits(array, elist_size, strict); in mb_guess_encoding_for_strings()
3402 bool strict = false; in PHP_FUNCTION() local
3410 Z_PARAM_BOOL(strict) in PHP_FUNCTION()
3449 strict = MBSTRG(strict_detection); in PHP_FUNCTION()
[all …]
H A Dmbstring.stub.php149 function mb_detect_encoding(string $string, array|string|null $encodings = null, bool $strict = fal… argument
/php-src/ext/mbstring/tests/
H A Dmb_substitute_character_variation_strict_types.phpt9 echo "*** Testing mb_substitute_character(): various types in strict typing mode ***\n";
110 *** Testing mb_substitute_character(): various types in strict typing mode ***
/php-src/ext/standard/tests/array/
H A Darray_search_variation1.phpt45 //strict option OFF
47 //strict option ON
49 //strict option OFF
H A Darray_column_scalar_index_strict_types.phpt2 Test array_column(): Index argument with various types in strict type mode
H A Din_array_variation1.phpt45 //strict option OFF
47 //strict option ON
49 //strict option OFF
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_quote_gbk_double_escape.phpt31 …o check whether it could have been part of a multibyte sequence, but the checks are less strict. */
/php-src/ext/openssl/tests/
H A Dbug68920.phpt2 Bug #68920: peer_fingerprint input checks should be strict
/php-src/docs/source/miscellaneous/
H A Dstubs.rst332 - ``@strict-properties``: adds the ``ZEND_ACC_NO_DYNAMIC_PROPERTIES`` flag for the class (as of PHP
354 * @strict-properties */
512 * @strict-properties
642 function in_array(mixed $needle, array $haystack, bool $strict = false): bool {}
672 bool strict;
676 Z_FLF_PARAM_BOOL(3, strict);
678 _php_search_array(return_value, value, array, strict, 0);
/php-src/Zend/
H A Dzend_execute.c809 if (UNEXPECTED(strict)) { in zend_verify_scalar_type_hint()
1003 return zend_verify_scalar_type_hint(type_mask, property, strict, 0); in i_zend_check_property_type()
1008 if (i_zend_check_property_type(info, property, strict)) { in i_zend_verify_property_type()
1017 return i_zend_verify_property_type(info, property, strict); in zend_verify_property_type()
3561 const zend_property_info *info, const zval *zv, bool strict) { in i_zend_verify_type_assignable_zval() argument
3579 if (strict) { in i_zend_verify_type_assignable_zval()
3613 int result = i_zend_verify_type_assignable_zval(prop, zv, strict); in zend_verify_ref_assignable_zval()
3688 ret = zend_verify_ref_assignable_zval(Z_REF_P(variable_ptr), &value, strict); in zend_assign_to_typed_ref_ex()
3714 zval *result = zend_assign_to_typed_ref_ex(variable_ptr, orig_value, value_type, strict, &garbage); in zend_assign_to_typed_ref()
3727 result = i_zend_verify_type_assignable_zval(prop_info, val, strict); in zend_verify_prop_assignable_by_ref_ex()
[all …]
H A Dzend_API.h1083 ZEND_API zend_result zend_try_assign_typed_ref_ex(zend_reference *ref, zval *zv, bool strict);
1439 #define _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, is_ref) do { \ argument
1444 zend_try_assign_typed_ref_zval_ex(ref, other_zv, strict); \
1453 #define ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict) \ argument
1454 _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, 0)
1456 #define ZEND_TRY_ASSIGN_REF_VALUE_EX(zv, other_zv, strict) do { \ argument
1458 _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, 1); \
1461 #define ZEND_TRY_ASSIGN_COPY_EX(zv, other_zv, strict) do { \ argument
1463 ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict); \
1466 #define ZEND_TRY_ASSIGN_REF_COPY_EX(zv, other_zv, strict) do { \ argument
[all …]
/php-src/ext/session/tests/user_session_module/
H A Dsave_handler.inc59 // read MUST create file. Otherwise, strict mode will not work
/php-src/sapi/fpm/tests/
H A Dstatus.inc161 "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n" .
/php-src/ext/gd/
H A Dconfig.m4238 GD_CFLAGS="-Wno-strict-prototypes -I$ext_srcdir/libgd $GD_CFLAGS"
/php-src/ext/soap/
H A Dphp_encoding.c1596 …model_to_xml_object(xmlNodePtr node, sdlContentModelPtr model, zval *object, int style, int strict) in model_to_xml_object() argument
1610 !strict) { in model_to_xml_object()
1665 } else if (strict && model->u.element->nillable && model->min_occurs > 0) { in model_to_xml_object()
1679 if (strict) { in model_to_xml_object()
1710 if (strict) { in model_to_xml_object()
1722 if (!model_to_xml_object(node, tmp, object, style, strict && (tmp->min_occurs > 0))) { in model_to_xml_object()
1723 if (!strict || tmp->min_occurs > 0) { in model_to_xml_object()
1727 strict = 1; in model_to_xml_object()
1746 …return model_to_xml_object(node, model->u.group->model, object, style, strict && model->min_occurs… in model_to_xml_object()
/php-src/ext/standard/
H A Dbasic_functions.stub.php1656 function in_array(mixed $needle, array $haystack, bool $strict = false): bool {} argument
1661 function array_search(mixed $needle, array $haystack, bool $strict = false): int|string|false {} argument
1723 function array_keys(array $array, mixed $filter_value = UNKNOWN, bool $strict = false): array {} argument
1947 function base64_decode(string $string, bool $strict = false): string|false {} argument

Completed in 95 milliseconds

12345