Home
last modified time | relevance | path

Searched refs:message (Results 101 – 125 of 425) sorted by relevance

12345678910>>...17

/PHP-7.4/Zend/
H A Dzend.c1534 char *message = NULL; in zend_throw_error() local
1557 zend_error(E_ERROR, "%s", message); in zend_throw_error()
1560 efree(message); in zend_throw_error()
1568 char *message = NULL; in zend_type_error() local
1573 efree(message); in zend_type_error()
1580 char *message = NULL; in zend_internal_type_error() local
1587 zend_error(E_WARNING, "%s", message); in zend_internal_type_error()
1589 efree(message); in zend_internal_type_error()
1597 char *message = NULL; in zend_internal_argument_count_error() local
1604 zend_error(E_WARNING, "%s", message); in zend_internal_argument_count_error()
[all …]
H A Dzend_exceptions.h58 …_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code);
63 … *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, zend_long code, …
/PHP-7.4/ext/sockets/tests/
H A Dsocket_export_stream-3.phpt34 $so = socket_sendto($sendsock, $m = "my message", strlen($m), 0, "224.0.0.23", 58393);
45 string(10) "my message"
H A Dsocket_import_stream-3.phpt33 $so = socket_sendto($sendsock, $m = "my message", strlen($m), 0, "224.0.0.23", 58379);
44 string(10) "my message"
/PHP-7.4/tests/run-test/
H A Dtest005.phpt2 Error message handling (with ZendOpcache)
14 // and than verify if a message is given by a division by zero.
H A Dtest008a.phpt2 Error message handling (with ZendOpcache)
14 // and than verify if a message is given by a division by zero.
/PHP-7.4/ext/standard/tests/mail/
H A Dmail_log.phpt24 $message = "Testing mail.log";
30 var_dump(mail($to, $subject, $message, $headers));
/PHP-7.4/Zend/tests/
H A Dbug80972.phpt6 function exceptions_error_handler($severity, $message, $filename, $lineno) {
8 throw new ErrorException($message, 0, $severity, $filename, $lineno);
H A Disset_expr_error.phpt2 Error message for isset(func())
H A Disset_func_error.phpt2 Error message for isset(func())
/PHP-7.4/sapi/fpm/tests/
H A Dresponse.inc122 … "The expected error message '$errorMessage' is not equal to returned error '$errorData'"
180 * Check if the response is valid and if not emit error message
298 * Emit error message
300 * @param string $message
303 private function error($message)
305 echo "ERROR: $message\n";
/PHP-7.4/ext/standard/
H A Dsyslog.c185 char *message; in PHP_FUNCTION() local
190 Z_PARAM_STRING(message, message_len) in PHP_FUNCTION()
193 php_syslog(priority, "%s", message); in PHP_FUNCTION()
/PHP-7.4/ext/oci8/tests/
H A Dbug42134.phpt70 ["message"]=>
83 ["message"]=>
96 ["message"]=>
/PHP-7.4/ext/spl/tests/
H A DCallbackFilterIteratorTest-002.phpt36 throw new Exception("some message");
48 some message
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_errmode.phpt42 // no message for any PDO call but...
56 printf("[008] Driver specific error message not set\n");
72 printf("[012] Driver specific error message not set\n");
91 printf("[016] Driver specific error message not set\n");
100 printf("[018] Cannot find all parts of the error info ('%s') in the exception message '%s'\n",
129 printf("[024] Driver specific error message not set\n");
138 printf("[026] Cannot find all parts of the error info ('%s') in the exception message '%s'\n",
/PHP-7.4/ext/soap/tests/schema/
H A Dtest_schema.inc28 <message name="testMessage">
30 </message>
33 <input message="testMessage"/>
/PHP-7.4/ext/intl/calendar/
H A Dcalendar_methods.cpp226 char *message; in _php_intlcal_field_uec_ret_in32t_method() local
231 spprintf(&message, 0, "%s: bad arguments", method_name); in _php_intlcal_field_uec_ret_in32t_method()
233 efree(message); in _php_intlcal_field_uec_ret_in32t_method()
238 spprintf(&message, 0, "%s: invalid field", method_name); in _php_intlcal_field_uec_ret_in32t_method()
240 efree(message); in _php_intlcal_field_uec_ret_in32t_method()
655 char *message; in _php_intlcal_field_ret_in32t_method() local
662 efree(message); in _php_intlcal_field_ret_in32t_method()
669 efree(message); in _php_intlcal_field_ret_in32t_method()
1304 zend_string* message = NULL; in PHP_FUNCTION() local
1321 message = intl_error_get_message(CALENDAR_ERROR_P(co)); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/soap/tests/
H A Dfault001.phpt8 $fault = new SoapFault("code", "message");
/PHP-7.4/ext/intl/transliterator/
H A Dtransliterator_methods.c341 zend_string *message = intl_error_get_message( NULL ); in PHP_FUNCTION() local
343 "transliterator with ID \"%s\" (%s)", Z_STRVAL_P( arg1 ), ZSTR_VAL(message) ); in PHP_FUNCTION()
344 zend_string_free( message ); in PHP_FUNCTION()
504 zend_string* message = NULL; in PHP_FUNCTION() local
523 message = intl_error_get_message( TRANSLITERATOR_ERROR_P( to ) ); in PHP_FUNCTION()
524 RETURN_STR( message ); in PHP_FUNCTION()
/PHP-7.4/ext/reflection/tests/
H A Dbug66430.phpt7 public $message = "Valid representation";
10 return $this->message;
H A Dbug78697.phpt2 Bug #78697: ReflectionClass::implementsInterface - inaccurate error message with traits
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_class_mysqli_warning.phpt78 assert('' === $warning->message);
79 printf("warning->message = '%s'\n", $warning->message);
125 warning->message = ''
/PHP-7.4/Zend/tests/traits/bugs/
H A Dmissing-trait.phpt2 Check error message for missing traits
/PHP-7.4/tests/output/
H A Dob_018.phpt2 output buffering - error message nirvana bug #37714
/PHP-7.4/ext/imap/tests/
H A Dimap_body.phpt43 Warning: imap_body(): Bad message number in %s on line %d
47 Warning: imap_body(): Bad message number in %s on line %d

Completed in 47 milliseconds

12345678910>>...17