allow_null 104 Zend/zend_API.h #define ZEND_ARG_OBJ_INFO(pass_by_ref, name, classname, allow_null) { #name, #classname, IS_OBJECT, pass_by_ref, allow_null, 0 }, allow_null 105 Zend/zend_API.h #define ZEND_ARG_ARRAY_INFO(pass_by_ref, name, allow_null) { #name, NULL, IS_ARRAY, pass_by_ref, allow_null, 0 }, allow_null 106 Zend/zend_API.h #define ZEND_ARG_CALLABLE_INFO(pass_by_ref, name, allow_null) { #name, NULL, IS_CALLABLE, pass_by_ref, allow_null, 0 }, allow_null 107 Zend/zend_API.h #define ZEND_ARG_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) { #name, NULL, type_hint, pass_by_ref, allow_null, 0 }, allow_null 111 Zend/zend_API.h #define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, return_reference, required_num_args, type, class_name, allow_null) \ allow_null 113 Zend/zend_API.h { (const char*)(zend_uintptr_t)(required_num_args), class_name, type, return_reference, allow_null, 0 }, allow_null 114 Zend/zend_API.h #define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(name, type, class_name, allow_null) \ allow_null 115 Zend/zend_API.h ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, 0, -1, type, class_name, allow_null) allow_null 4434 Zend/zend_compile.c arg_infos->allow_null = 0; allow_null 4516 Zend/zend_compile.c arg_info->allow_null = 1; allow_null 4526 Zend/zend_compile.c arg_info->allow_null = has_null_default; allow_null 305 Zend/zend_compile.h zend_bool allow_null; allow_null 315 Zend/zend_compile.h zend_bool allow_null; allow_null 329 Zend/zend_compile.h zend_bool allow_null; allow_null 760 Zend/zend_execute.c } else if (Z_TYPE_P(arg) != IS_NULL || !cur_arg_info->allow_null) { allow_null 818 Zend/zend_execute.c } else if (Z_TYPE_P(arg) != IS_NULL || !(cur_arg_info->allow_null || (default_value && is_null_constant(default_value)))) { allow_null 966 Zend/zend_execute.c } else if (Z_TYPE_P(ret) != IS_NULL || !ret_info->allow_null) { allow_null 971 Zend/zend_execute.c if (!zend_is_callable(ret, IS_CALLABLE_CHECK_SILENT, NULL) && (Z_TYPE_P(ret) != IS_NULL || !ret_info->allow_null)) { allow_null 1015 Zend/zend_execute.c } else if (Z_TYPE_P(ret) != IS_NULL || !ret_info->allow_null) { allow_null 306 ext/com_dotnet/com_handlers.c f.arg_info[i].allow_null = 1; allow_null 664 ext/reflection/php_reflection.c if (arg_info->allow_null) { allow_null 669 ext/reflection/php_reflection.c if (arg_info->allow_null) { allow_null 890 ext/reflection/php_reflection.c if (fptr->common.arg_info[-1].allow_null) { allow_null 895 ext/reflection/php_reflection.c if (fptr->common.arg_info[-1].allow_null) { allow_null 2744 ext/reflection/php_reflection.c RETVAL_BOOL(param->arg_info->allow_null); allow_null 2949 ext/reflection/php_reflection.c RETVAL_BOOL(param->arg_info->allow_null);