Home
last modified time | relevance | path

Searched refs:E_ERROR (Results 1 – 25 of 107) sorted by relevance

12345

/PHP-8.1/Zend/tests/
H A DErrorException_construct.phpt11 $e = new ErrorException("Second", 0, E_ERROR, null);
16 $e = new ErrorException("Third", 0, E_ERROR, null, null);
21 $e = new ErrorException("Forth", 0, E_ERROR, null, 123);
26 $e = new ErrorException("Fifth", 0, E_ERROR, "abc.php");
31 $e = new ErrorException("Sixth", 0, E_ERROR, "abc.php", null);
36 $e = new ErrorException("Seventh", 0, E_ERROR, "abc.php", 123);
H A Dbug42819.phpt30 const C7 = E_ERROR;
40 static $a7 = array(E_ERROR => 0);
50 static $a7 = array(E_ERROR => I);
60 static $a7 = array(E_ERROR => foo\I);
74 static $a1 = array(I => E_ERROR);
75 static $a2 = array(foo\I => E_ERROR);
76 static $a3 = array(foo\foo::I => E_ERROR);
77 static $a4 = array(\foo\I => E_ERROR);
78 static $a5 = array(\foo\foo::I => E_ERROR);
80 static $a7 = array(E_ERROR => E_ERROR);
[all …]
/PHP-8.1/Zend/
H A Dzend_errors.h23 #define E_ERROR (1<<0L) macro
42 #define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE…
46 #define E_FATAL_ERRORS (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERR…
H A Dzend_max_execution_timer.c46 zend_strerror_noreturn(E_ERROR, errno, "Could not create timer"); in zend_max_execution_timer_init()
77 zend_strerror_noreturn(E_ERROR, errno, "Could not set timer"); in zend_max_execution_timer_settime()
99 zend_strerror_noreturn(E_ERROR, errno, "Could not delete timer"); in zend_max_execution_timer_shutdown()
H A Dzend_exceptions.stub.php68 protected int $severity = E_ERROR;
73 int $severity = E_ERROR,
/PHP-8.1/ext/soap/
H A Dphp_schema.c367 soap_error0(E_ERROR, "Parsing Schema: simpleType has no 'name' attribute"); in schema_simpleType()
478 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in list", trav->name); in schema_list()
578 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in union", trav->name); in schema_union()
653 soap_error0(E_ERROR, "Parsing Schema: restriction has no 'base' attribute"); in schema_restriction_simpleContent()
758 soap_error0(E_ERROR, "Parsing Schema: restriction has no 'base' attribute"); in schema_restriction_complexContent()
821 soap_error0(E_ERROR, "Parsing Schema: missing restriction value"); in schema_restriction_var_int()
849 soap_error0(E_ERROR, "Parsing Schema: missing restriction value"); in schema_restriction_var_char()
883 soap_error0(E_ERROR, "Parsing Schema: extension has no 'base' attribute"); in schema_extension_simpleContent()
938 soap_error0(E_ERROR, "Parsing Schema: extension has no 'base' attribute"); in schema_extension_complexContent()
1038 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in all", trav->name); in schema_all()
[all …]
H A Dphp_sdl.c340 soap_error1(E_ERROR, "Parsing WSDL: Couldn't load from '%s'", struri); in load_wsdl_ex()
408 soap_error0(E_ERROR, "Parsing WSDL: <message> has no name attribute"); in load_wsdl_ex()
418 soap_error0(E_ERROR, "Parsing WSDL: <portType> has no name attribute"); in load_wsdl_ex()
428 soap_error0(E_ERROR, "Parsing WSDL: <binding> has no name attribute"); in load_wsdl_ex()
438 soap_error0(E_ERROR, "Parsing WSDL: <service> has no name attribute"); in load_wsdl_ex()
471 soap_error0(E_ERROR, "Parsing WSDL: Missing part attribute for <header>"); in wsdl_soap_binding_header()
505 soap_error0(E_ERROR, "Parsing WSDL: Unspecified encodingStyle"); in wsdl_soap_binding_header()
630 soap_error0(E_ERROR, "Parsing WSDL: Unspecified encodingStyle"); in wsdl_soap_binding_body()
781 soap_error0(E_ERROR, "Parsing WSDL: No binding associated with <port>"); in load_wsdl()
1105 soap_error0(E_ERROR, "Parsing WSDL: Unspecified encodingStyle"); in load_wsdl()
[all …]
/PHP-8.1/ext/gd/libgd/
H A Dgd_webp.c59 zend_error(E_ERROR, "WebP decode: realloc failed"); in gdImageCreateFromWebpCtx()
70 zend_error(E_ERROR, "gd-webp cannot get webp info"); in gdImageCreateFromWebpCtx()
82 zend_error(E_ERROR, "gd-webp cannot allocate temporary buffer"); in gdImageCreateFromWebpCtx()
116 zend_error(E_ERROR, "Paletter image not supported by webp"); in gdImageWebpCtx()
162 zend_error(E_ERROR, "gd-webp encoding failed"); in gdImageWebpCtx()
/PHP-8.1/tests/lang/operators/
H A DbitwiseShiftLeft_variationStr2.phpt6 error_reporting(E_ERROR);
H A DbitwiseShiftRight_variationStr2.phpt6 error_reporting(E_ERROR);
/PHP-8.1/tests/func/
H A D011.phpt4 error_reporting = E_ALL & E_NOTICE | E_PARSE ^ E_DEPRECATED & ~E_WARNING | !E_ERROR
/PHP-8.1/ext/intl/tests/
H A Dintl_get_error_code.phpt12 error_reporting( E_ERROR );
H A Dintl_get_error_message.phpt12 error_reporting( E_ERROR );
H A Dcollator_get_error_code.phpt40 error_reporting( E_ERROR );
/PHP-8.1/ext/intl/transliterator/
H A Dtransliterator.c32 zend_error( E_ERROR, "Transliterator class not defined" ); in transliterator_register_constants()
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug70469.phpt2 Bug #70469 (SoapClient should not generate E_ERROR if exceptions enabled)
/PHP-8.1/ext/intl/spoofchecker/
H A Dspoofchecker.c32 zend_error(E_ERROR, "Spoofchecker class not defined"); in spoofchecker_register_constants()
/PHP-8.1/ext/intl/normalizer/
H A Dnormalizer.c34 zend_error( E_ERROR, "Normalizer class not defined" ); in normalizer_register_constants()
/PHP-8.1/ext/intl/locale/
H A Dlocale.c34 zend_error( E_ERROR, "Locale class not defined" ); in locale_register_constants()
/PHP-8.1/ext/standard/tests/general_functions/
H A Dparse_ini_booleans.data4 error_reporting1 = E_COMPILE_ERROR|E_RECOVERABLE_ERROR |E_ERROR|E_CORE_ERROR
/PHP-8.1/ext/standard/tests/streams/
H A Duser-stream-error.phpt2 E_ERROR during UserStream Open
/PHP-8.1/ext/standard/
H A Dexec.c294 php_error_docref(NULL, E_ERROR, "Command exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_cmd()
370 …php_error_docref(NULL, E_ERROR, "Escaped command exceeds the allowed length of %zu bytes", cmd_max… in php_escape_shell_cmd()
397 php_error_docref(NULL, E_ERROR, "Argument exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_arg()
456 …php_error_docref(NULL, E_ERROR, "Escaped argument exceeds the allowed length of %zu bytes", cmd_ma… in php_escape_shell_arg()
/PHP-8.1/ext/intl/collator/
H A Dcollator.c35 zend_error( E_ERROR, "Collator class not defined" ); in collator_register_constants()
H A Dcollator_class.c81 zend_error( E_ERROR, in collator_register_Collator_class()
/PHP-8.1/ext/pdo/
H A Dpdo.c113 …zend_error(E_ERROR, "PDO: driver %s requires PDO API version " ZEND_ULONG_FMT "; this is PDO versi… in ZEND_GET_MODULE()
118 zend_error(E_ERROR, "You MUST load PDO before loading any PDO drivers"); in ZEND_GET_MODULE()

Completed in 50 milliseconds

12345