Home
last modified time | relevance | path

Searched refs:message (Results 401 – 425 of 465) sorted by relevance

1...<<111213141516171819

/php-src/sapi/cgi/
H A Dcgi_main.c757 static void sapi_cgi_log_message(const char *message, int syslog_type_int) in sapi_cgi_log_message() argument
764 int ret, len = (int)strlen(message); in sapi_cgi_log_message()
767 memcpy(buf, message, len); in sapi_cgi_log_message()
775 fprintf(stderr, "%s\n", message); in sapi_cgi_log_message()
779 fprintf(stderr, "%s\n", message); in sapi_cgi_log_message()
/php-src/Zend/
H A Dzend_execute_API.c237 char *message = NULL; in zend_throw_or_error() local
240 zend_vspprintf(&message, 0, format, va); in zend_throw_or_error()
243 zend_throw_error(exception_ce, "%s", message); in zend_throw_or_error()
245 zend_error_noreturn(E_ERROR, "%s", message); in zend_throw_or_error()
248 efree(message); in zend_throw_or_error()
H A Dzend_builtin_functions_arginfo.h137 ZEND_ARG_TYPE_INFO(0, message, IS_STRING, 0)
H A Dzend_builtin_functions.c1237 zend_string *message; in ZEND_FUNCTION() local
1239 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|l", &message, &error_type) == FAILURE) { in ZEND_FUNCTION()
1261 …nd_error_zstr_at(error_type, zend_get_executed_filename_ex(), zend_get_executed_lineno(), message); in ZEND_FUNCTION()
/php-src/ext/sqlite3/
H A Dsqlite3.c83 char *message; in php_sqlite3_error() local
86 vspprintf(&message, 0, format, arg); in php_sqlite3_error()
90 zend_throw_exception(php_sqlite3_exception_ce, message, errcode); in php_sqlite3_error()
92 php_error_docref(NULL, E_WARNING, "%s", message); in php_sqlite3_error()
95 if (message) { in php_sqlite3_error()
96 efree(message); in php_sqlite3_error()
/php-src/
H A Dphp.ini-development470 ; E_USER_ERROR - user-generated error message
471 ; E_USER_WARNING - user-generated warning message
472 ; E_USER_NOTICE - user-generated notice message
551 ; error message as HTML for easier reading. This directive controls whether
552 ; the error message is formatted as HTML or not.
593 ; The syslog ident is a string which is prepended to every message logged
598 ; the message. Only used when error_log is set to syslog.
1241 ; Ignore PostgreSQL backends Notice message or not.
1242 ; Notice message logging require a little overheads.
1246 ; Log PostgreSQL backends Notice message or not.
[all …]
H A Dphp.ini-production472 ; E_USER_ERROR - user-generated error message
473 ; E_USER_WARNING - user-generated warning message
474 ; E_USER_NOTICE - user-generated notice message
553 ; error message as HTML for easier reading. This directive controls whether
554 ; the error message is formatted as HTML or not.
595 ; The syslog ident is a string which is prepended to every message logged
600 ; the message. Only used when error_log is set to syslog.
1243 ; Ignore PostgreSQL backends Notice message or not.
1244 ; Notice message logging require a little overheads.
1248 ; Log PostgreSQL backends Notice message or not.
[all …]
H A DREADME.md117 the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
/php-src/ext/dom/lexbor/lexbor/css/
H A Dparser.h187 lexbor_str_t message; member
/php-src/ext/libxml/
H A Dlibxml.c628 error_copy.message = (char*)xmlStrdup((const xmlChar*)msg); in _php_list_set_error_structure()
1112 if (error->message) { in php_libxml_create_error_object()
1113 add_property_string(return_value, "message", error->message); in php_libxml_create_error_object()
/php-src/ext/mbstring/tests/
H A Dmb_convert_variables.phpt11 //$debug = true; // Uncomment this line to view error/warning/notice message in *.out file
/php-src/ext/pcre/tests/
H A Dpreg_match_error4.phpt562 "name": "psr\\/http-message",
879 "psr\\/http-message": "1.0",
/php-src/sapi/cli/
H A Dphp_cli.c350 static void sapi_cli_log_message(const char *message, int syslog_type_int) /* {{{ */ in sapi_cli_log_message() argument
352 fprintf(stderr, "%s\n", message); in sapi_cli_log_message()
H A Dphp_cli_server.c235 …c void php_cli_server_log_response(php_cli_server_client *client, int status, const char *message);
1185 …p_cli_server_log_response(php_cli_server_client *client, int status, const char *message) /* {{{ */ in php_cli_server_log_response() argument
1225 if (message) { in php_cli_server_log_response()
1226 spprintf(&message_buf, 0, " - %s", message); in php_cli_server_log_response()
1239 if (message) { in php_cli_server_log_response()
1253 if (message) { in php_cli_server_log_response()
/php-src/Zend/tests/typehints/
H A Dor_null.phpt6 …y_missing_return_type` functions which produces an "or null"/"or be null" part in its error message
/php-src/ext/mysqli/tests/
H A Dmysqli_poll_kill.phpt182 To be fixed later. Minor issue about fetching error message from killed line
/php-src/ext/pgsql/
H A Dpgsql.c277 static zend_string *_php_pgsql_trim_message(const char *message) in _php_pgsql_trim_message() argument
279 size_t i = strlen(message); in _php_pgsql_trim_message()
281 if (i>2 && (message[i-2] == '\r' || message[i-2] == '\n') && message[i-1] == '.') { in _php_pgsql_trim_message()
284 while (i>1 && (message[i-1] == '\r' || message[i-1] == '\n')) { in _php_pgsql_trim_message()
287 return zend_string_init(message, i, 0); in _php_pgsql_trim_message()
321 static void _php_pgsql_notice_handler(void *l, const char *message) in _php_pgsql_notice_handler() argument
334 zend_string *trimmed_message = _php_pgsql_trim_message(message); in _php_pgsql_notice_handler()
/php-src/Zend/tests/type_declarations/union_types/
H A Dtype_checking_weak.phpt29 echo ' (', $e['message'], ')';
/php-src/ext/sockets/
H A Dsockets_arginfo.h167 ZEND_ARG_TYPE_INFO(0, message, IS_ARRAY, 0)
173 ZEND_ARG_TYPE_INFO(1, message, IS_ARRAY, 0)
/php-src/ext/spl/tests/
H A Dbug55701.phpt2 Bug #55701 (GlobIterator throws LogicException with message 'The parent constructor was not called')
/php-src/ext/date/lib/
H A Dtimelib.h335 char *message; member
/php-src/docs/
H A Drelease-process.md337 Here is an example "ready for builds" message to release-managers@php.net:
438 In the announcement message, point out the location of the release and the
451 > Do *not* send a single email message with all addresses in the `To`, `Cc`,
635 Here is an example "ready for builds" message to release-managers@php.net:
699 You may edit the generated files to expand on the base message, if needed.
785 > Do *not* send a single email message with all addresses in the `To`, `Cc`,
893 appropriate commit message (e.g., "master is now for PHP 8.3.0-dev").
/php-src/ext/mbstring/
H A Dmbstring_arginfo.h189 ZEND_ARG_TYPE_INFO(0, message, IS_STRING, 0)
/php-src/ext/soap/
H A Dsoap.c70 …r_handler(int error_num, zend_string *error_filename, uint32_t error_lineno, zend_string *message);
1838 …rror_num, zend_string *error_filename, const uint32_t error_lineno, zend_string *message) /* {{{ */ in soap_real_error_handler() argument
1861 add_soap_fault_ex(&fault, &SOAP_GLOBAL(error_object), code, ZSTR_VAL(message), NULL, NULL); in soap_real_error_handler()
1869 old_error_handler(error_num, error_filename, error_lineno, message); in soap_real_error_handler()
1893 buffer = zend_string_copy(message); in soap_real_error_handler()
1912 old_error_handler(error_num, error_filename, error_lineno, message); in soap_real_error_handler()
1932 …rror_num, zend_string *error_filename, const uint32_t error_lineno, zend_string *message) /* {{{ */ in soap_error_handler() argument
1935 old_error_handler(error_num, error_filename, error_lineno, message); in soap_error_handler()
1937 soap_real_error_handler(error_num, error_filename, error_lineno, message); in soap_error_handler()
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.c75 zend_string_release(info->message); in free_persistent_script()

Completed in 202 milliseconds

1...<<111213141516171819