Searched refs:E_USER_DEPRECATED (Results 1 – 13 of 13) sorted by relevance
/php-src/Zend/tests/attributes/deprecated/functions/ |
H A D | error_code_001.phpt | 2 #[\Deprecated]: Code is E_USER_DEPRECATED for functions. 7 var_dump($errno, E_USER_DEPRECATED, $errno === E_USER_DEPRECATED);
|
/php-src/Zend/tests/attributes/deprecated/class_constants/ |
H A D | error_code_001.phpt | 2 #[\Deprecated]: Code is E_USER_DEPRECATED for class constants. 7 var_dump($errno, E_USER_DEPRECATED, $errno === E_USER_DEPRECATED);
|
/php-src/Zend/tests/ |
H A D | 015.phpt | 20 var_dump(trigger_error("error", E_USER_DEPRECATED)); 26 … #2 ($error_level) must be one of E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE, or E_USER_DEPRECATED 27 … #2 ($error_level) must be one of E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE, or E_USER_DEPRECATED
|
H A D | ErrorException_getSeverity.phpt | 220 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED); 223 var_dump($e->getSeverity() === E_USER_DEPRECATED); 400 … throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED, __FILE__); 403 var_dump($e->getSeverity() === E_USER_DEPRECATED); 580 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED, __FILE__, _… 583 var_dump($e->getSeverity() === E_USER_DEPRECATED); 592 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED, __FILE__, _… 595 var_dump($e->getSeverity() === E_USER_DEPRECATED); 797 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED, __FILE__, _… 800 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_DEPRECATED, __FILE__, _… [all …]
|
/php-src/Zend/ |
H A D | zend_errors.h | 38 #define E_USER_DEPRECATED (1<<14L) macro 43 …ER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED)
|
H A D | zend_constants.stub.php | 95 const E_USER_DEPRECATED = UNKNOWN; define
|
H A D | zend_constants_arginfo.h | 20 REGISTER_LONG_CONSTANT("E_USER_DEPRECATED", E_USER_DEPRECATED, CONST_PERSISTENT); in register_zend_constants_symbols()
|
H A D | zend.c | 1619 case E_USER_DEPRECATED: in get_filename_lineno()
|
H A D | zend_builtin_functions.c | 1252 case E_USER_DEPRECATED: in ZEND_FUNCTION()
|
H A D | zend_execute.c | 1887 int code = fbc->type == ZEND_INTERNAL_FUNCTION ? E_DEPRECATED : E_USER_DEPRECATED; in zend_deprecated_function() 1913 int code = c->ce->type == ZEND_INTERNAL_CLASS ? E_DEPRECATED : E_USER_DEPRECATED; in zend_deprecated_class_constant()
|
/php-src/main/ |
H A D | main.c | 1373 case E_USER_DEPRECATED: in php_error_cb()
|
/php-src/ |
H A D | php.ini-development | 475 ; E_USER_DEPRECATED - user-generated deprecation warnings
|
H A D | php.ini-production | 477 ; E_USER_DEPRECATED - user-generated deprecation warnings
|
Completed in 66 milliseconds