/PHP-8.3/Zend/ |
H A D | zend_errors.h | 27 #define E_CORE_ERROR (1<<4L) macro 42 #define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE… 43 #define E_CORE (E_CORE_ERROR | E_CORE_WARNING) 46 #define E_FATAL_ERRORS (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERR…
|
H A D | zend_constants.stub.php | 33 const E_CORE_ERROR = UNKNOWN; define
|
H A D | zend_constants_arginfo.h | 12 REGISTER_LONG_CONSTANT("E_CORE_ERROR", E_CORE_ERROR, CONST_PERSISTENT); in register_zend_constants_symbols()
|
H A D | zend_variables.c | 102 …zend_error_noreturn(E_CORE_ERROR, "Internal zval's can't be arrays, objects, resources or referenc… in zval_internal_ptr_dtor()
|
H A D | zend_interfaces.c | 60 …zend_error_noreturn(E_CORE_ERROR, "Couldn't find implementation for method %s::%s", ZSTR_VAL(obj_c… in zend_call_method() 66 … zend_error_noreturn(E_CORE_ERROR, "Couldn't find implementation for function %s", function_name); in zend_call_method() 277 zend_error_noreturn(E_CORE_ERROR, "%s %s must implement interface %s as part of either %s or %s", in zend_implement_traversable()
|
H A D | zend_vm_execute.skl | 36 zend_error_noreturn(E_CORE_ERROR, "Arrived at end of main loop which shouldn't happen");
|
H A D | zend_objects.c | 160 zend_error_noreturn(E_CORE_ERROR, "Attempt to destruct pending exception"); in zend_objects_destroy_object()
|
H A D | zend_API.c | 1085 zend_error_noreturn(E_CORE_ERROR, "%s%s%s(): %s", in zend_parse_parameters_debug_error() 1289 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters() 1322 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters_ex() 2313 zend_error_noreturn(E_CORE_ERROR,"Unable to start %s module", module->name); in zend_startup_module_ex() 2870 …zend_error_noreturn(E_CORE_ERROR, "Cannot declare a return type of %s outside of a class scope", t… in zend_register_functions() 2952 zend_error_noreturn(E_CORE_ERROR, in zend_register_functions() 3035 scope, (zend_function *)reg_function, lowercase_name, E_CORE_ERROR); in zend_register_functions() 4421 zend_error_noreturn(E_CORE_ERROR, "Internal zvals cannot be refcounted"); in zend_declare_typed_property() 4657 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_class_constant() 4686 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_class_constant()
|
H A D | zend_exceptions.c | 218 zend_error_noreturn(E_CORE_ERROR, "Exception thrown without a stack frame"); in zend_throw_exception_internal() 998 zend_error_noreturn(E_CORE_ERROR, "Need to supply an object when throwing an exception"); in zend_throw_exception_object()
|
H A D | zend_execute.c | 1321 zend_error_noreturn(E_CORE_ERROR, "%s() missing rc1", ZSTR_VAL(name)); in zend_verify_internal_func_info() 1324 zend_error_noreturn(E_CORE_ERROR, "%s() missing rcn", ZSTR_VAL(name)); in zend_verify_internal_func_info() 1330 zend_error_noreturn(E_CORE_ERROR, "%s() missing type %s", in zend_verify_internal_func_info() 1342 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info() 1347 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info() 1354 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info() 1431 zend_error_noreturn(E_CORE_ERROR, "%s%s%s(): Return value must be of type %s, %s returned", in zend_verify_internal_return_error()
|
H A D | zend.c | 1448 case E_CORE_ERROR: in zend_error_zstr_at() 1553 case E_CORE_ERROR: in get_filename_lineno()
|
H A D | zend_execute_API.c | 1054 zend_error_noreturn(E_CORE_ERROR, "Couldn't execute method %s%s%s", in zend_call_known_function()
|
H A D | zend_inheritance.c | 1342 …zend_error_noreturn(E_CORE_ERROR, "%s %s could not implement interface %s", zend_get_object_type_u… in do_implement_interface()
|
/PHP-8.3/ext/standard/tests/general_functions/ |
H A D | parse_ini_booleans.data | 4 error_reporting1 = E_COMPILE_ERROR|E_RECOVERABLE_ERROR |E_ERROR|E_CORE_ERROR
|
/PHP-8.3/ext/pdo_odbc/ |
H A D | pdo_odbc.c | 91 …php_error_docref(NULL, E_CORE_ERROR, "Error in pdo_odbc.connection_pooling configuration. Value mu… in PHP_MINIT_FUNCTION()
|
/PHP-8.3/Zend/tests/ |
H A D | ErrorException_getSeverity.phpt | 100 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR); 103 var_dump($e->getSeverity() === E_CORE_ERROR); 292 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__); 295 var_dump($e->getSeverity() === E_CORE_ERROR); 484 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE… 487 var_dump($e->getSeverity() === E_CORE_ERROR); 705 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE… 708 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE… 711 var_dump($e->getSeverity() === E_CORE_ERROR);
|
/PHP-8.3/main/ |
H A D | main.c | 1213 case E_CORE_ERROR: in report_zend_debug_error_notify_cb() 1298 case E_CORE_ERROR: in php_error_cb() 1342 if (type == E_CORE_ERROR || type == E_CORE_WARNING) { in php_error_cb() 1391 case E_CORE_ERROR: in php_error_cb() 2301 E_CORE_ERROR, in php_module_startup()
|
H A D | spprintf.c | 334 zend_error_noreturn(E_CORE_ERROR, in xbuf_format_converter()
|
H A D | snprintf.c | 634 zend_error_noreturn(E_CORE_ERROR, in format_converter()
|
/PHP-8.3/ext/standard/ |
H A D | browscap.c | 336 zend_error(E_CORE_ERROR, "Invalid browscap ini file: " in php_browscap_parser_cb()
|
/PHP-8.3/ext/zlib/ |
H A D | zlib.c | 1277 …php_error_docref("ref.outcontrol", E_CORE_ERROR, "Cannot use both zlib.output_compression and outp… in ZEND_GET_MODULE()
|
/PHP-8.3/ |
H A D | php.ini-development | 478 ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup 494 ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
|
H A D | php.ini-production | 480 ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup 496 ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
|
/PHP-8.3/ext/exif/ |
H A D | exif.c | 1324 zend_error(E_CORE_ERROR, "Duplicate tag %x", tag_table->Tag); in exif_make_tag_ht()
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_x86.dasc | 2829 zend_error(E_CORE_ERROR, "CPU doesn't support SSE2");
|