Home
last modified time | relevance | path

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

1234

/PHP-7.4/
H A DNEWS2095 . Fixed bug #77895 (IntlDateFormatter::create fails in strict mode if $locale
H A Dphp.ini-development1047 ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
1049 ;pdo_odbc.connection_pooling=strict
1344 ; Whether to use strict session mode.
1678 ; enable strict encoding detection.
H A Dphp.ini-production1047 ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
1049 ;pdo_odbc.connection_pooling=strict
1344 ; Whether to use strict session mode.
1678 ; enable strict encoding detection.
H A DUPGRADING172 . htmlentities() will now throw a notice (instead of a strict standards
/PHP-7.4/ext/standard/
H A Darray.c1562 zend_bool strict = 0; /* strict comparison or not */ in php_search_array() local
1568 Z_PARAM_BOOL(strict) in php_search_array()
1571 if (strict) { in php_search_array()
3955 zend_bool strict = 0; /* do strict comparison */ local
3965 Z_PARAM_BOOL(strict)
3979 if (strict) {
/PHP-7.4/ext/mbstring/
H A Dmbstring.c369 ZEND_ARG_INFO(0, strict)
3546 zend_bool strict=0; in PHP_FUNCTION() local
3554 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|z!b", &str, &str_len, &encoding_list, &strict) == FA… in PHP_FUNCTION()
3591 strict = MBSTRG(strict_detection); in PHP_FUNCTION()
3605 ret = mbfl_identify_encoding(&string, elist, size, strict); in PHP_FUNCTION()
/PHP-7.4/sapi/fpm/tests/
H A Dstatus.inc136 "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n" .
/PHP-7.4/Zend/
H A Dzend_vm_execute.h4543 zend_bool strict; in ZEND_STRLEN_SPEC_CONST_HANDLER() local
4558 strict = EX_USES_STRICT_TYPES(); in ZEND_STRLEN_SPEC_CONST_HANDLER()
4560 if (EXPECTED(!strict)) { in ZEND_STRLEN_SPEC_CONST_HANDLER()
4573 …zend_internal_type_error(strict, "strlen() expects parameter 1 to be string, %s given", zend_get_t… in ZEND_STRLEN_SPEC_CONST_HANDLER()
13784 zend_bool strict; in ZEND_STRLEN_SPEC_TMPVAR_HANDLER() local
13799 strict = EX_USES_STRICT_TYPES(); in ZEND_STRLEN_SPEC_TMPVAR_HANDLER()
13801 if (EXPECTED(!strict)) { in ZEND_STRLEN_SPEC_TMPVAR_HANDLER()
13814 …zend_internal_type_error(strict, "strlen() expects parameter 1 to be string, %s given", zend_get_t… in ZEND_STRLEN_SPEC_TMPVAR_HANDLER()
38014 zend_bool strict; in ZEND_STRLEN_SPEC_CV_HANDLER() local
38029 strict = EX_USES_STRICT_TYPES(); in ZEND_STRLEN_SPEC_CV_HANDLER()
[all …]
H A Dzend_vm_def.h8097 zend_bool strict; variable
8112 strict = EX_USES_STRICT_TYPES();
8114 if (EXPECTED(!strict)) {
8127 …zend_internal_type_error(strict, "strlen() expects parameter 1 to be string, %s given", zend_get_t…
H A Dzend_API.c3808 ZEND_API int zend_try_assign_typed_ref_ex(zend_reference *ref, zval *val, zend_bool strict) /* {{{ … in zend_try_assign_typed_ref_ex() argument
3810 if (UNEXPECTED(!zend_verify_ref_assignable_zval(ref, val, strict))) { in zend_try_assign_typed_ref_ex()
3926 ZEND_API int zend_try_assign_typed_ref_zval_ex(zend_reference *ref, zval *zv, zend_bool strict) /* … in zend_try_assign_typed_ref_zval_ex() argument
3931 return zend_try_assign_typed_ref_ex(ref, &tmp, strict); in zend_try_assign_typed_ref_zval_ex()
H A Dzend_execute.c878 static zend_bool zend_verify_scalar_type_hint(zend_uchar type_hint, zval *arg, zend_bool strict) in zend_verify_scalar_type_hint() argument
880 if (UNEXPECTED(strict)) { in zend_verify_scalar_type_hint()
976 return zend_verify_scalar_type_hint(ZEND_TYPE_CODE(info->type), property, strict); in i_zend_check_property_type()
982 if (i_zend_check_property_type(info, property, strict)) { in i_zend_verify_property_type()
991 return i_zend_verify_property_type(info, property, strict); in zend_verify_property_type()
3153 zend_type *type_ptr, zend_class_entry *self_ce, zval *zv, zend_bool strict) { in i_zend_verify_type_assignable_zval() argument
3183 if (strict) { in i_zend_verify_type_assignable_zval()
3218 int result = i_zend_verify_type_assignable_zval(&prop->type, prop->ce, zv, strict); in zend_verify_ref_assignable_zval()
3262 ret = zend_verify_ref_assignable_zval(Z_REF_P(variable_ptr), &value, strict); in zend_assign_to_typed_ref()
3289 result = i_zend_verify_type_assignable_zval(&prop_info->type, prop_info->ce, val, strict); in zend_verify_prop_assignable_by_ref()
[all …]
H A Dzend_compile.c3539 zend_bool strict = 0; in zend_compile_func_in_array() local
3545 strict = zend_is_true(zend_ast_get_zval(args->child[2])); in zend_compile_func_in_array()
3559 strict = zend_is_true(&value); in zend_compile_func_in_array()
3581 if (strict) { in zend_compile_func_in_array()
3616 opline->extended_value = strict; in zend_compile_func_in_array()
H A DZend.m4225 test -n "$GCC" && CFLAGS="$CFLAGS -Wall -Wno-strict-aliasing"
/PHP-7.4/ext/soap/
H A Dphp_encoding.c1591 …model_to_xml_object(xmlNodePtr node, sdlContentModelPtr model, zval *object, int style, int strict) in model_to_xml_object() argument
1605 !strict) { in model_to_xml_object()
1660 } else if (strict && model->u.element->nillable && model->min_occurs > 0) { in model_to_xml_object()
1674 if (strict) { in model_to_xml_object()
1705 if (strict) { in model_to_xml_object()
1717 if (!model_to_xml_object(node, tmp, object, style, strict && (tmp->min_occurs > 0))) { in model_to_xml_object()
1718 if (!strict || tmp->min_occurs > 0) { in model_to_xml_object()
1722 strict = 1; in model_to_xml_object()
1741 …return model_to_xml_object(node, model->u.group->model, object, style, strict && model->min_occurs… in model_to_xml_object()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_types.phpt181 // don't care about date() strict TZ warnings...
H A Dmysqli_stmt_bind_param.phpt242 // don't care about date() strict TZ warnings...
H A Dmysqli_stmt_bind_result.phpt223 // don't care about date() strict TZ warnings...
H A Dmysqli_fetch_all.phpt220 // don't care about date() strict TZ warnings...
H A Dmysqli_fetch_all_oo.phpt219 // don't care about date() strict TZ warnings...
H A Dmysqli_fetch_array.phpt209 // don't care about date() strict TZ warnings...
H A Dmysqli_fetch_array_oo.phpt195 // don't care about date() strict TZ warnings...
H A Dbug51647.phpt53 /* ERROR 1064 (42000): You have an error in your SQL syntax; = sql strict mode */
83 /* ERROR 1064 (42000): You have an error in your SQL syntax; = sql strict mode */
H A Dbug35759.phpt25 /* SQL strict mode - [1101] BLOB/TEXT column 'a0' can't have a default value */
/PHP-7.4/ext/mysqli/
H A Dphp_mysqli_structs.h315 zend_long strict; variable
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c366 mbfl_encoding_detector_new(const mbfl_encoding **elist, int elistsz, int strict) in mbfl_encoding_detector_new() argument
402 identd->strict = strict; in mbfl_encoding_detector_new()
471 if (!identd->strict || !filter->status) { in mbfl_encoding_detector_judge()
565 mbfl_identify_encoding(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict) in mbfl_identify_encoding() argument
604 if ((num - 1) <= bad && !strict) { in mbfl_identify_encoding()
618 if (strict && filter->status) { in mbfl_identify_encoding()
630 if (!filter->flag && (!strict || !filter->status)) { in mbfl_identify_encoding()

Completed in 256 milliseconds

1234