Home
last modified time | relevance | path

Searched refs:message (Results 76 – 100 of 434) sorted by relevance

12345678910>>...18

/php-src/Zend/tests/
H A Dundef_var_in_verify_return.phpt6 set_error_handler(function(int $severity, string $message, string $filename, int $lineNumber): void…
7 throw new ErrorException($message, 0, $severity, $filename, $lineNumber);
H A Dbug77494.phpt12 var_dump($b->message);
22 Warning: Undefined property: ErrorException::$message in %s on line %d
H A Dbug80781.phpt6 function handle(int $severity, string $message, string $file, int $line): bool {
8 throw new \ErrorException($message, 0, $severity, $file, $line);
H A Dmethods-on-non-objects-usort.phpt5 set_error_handler(function($code, $message) {
6 var_dump($code, $message);
/php-src/Zend/
H A Dzend.h133 zend_string *message; member
238 …unction)(int type, zend_string *error_filename, const uint32_t error_lineno, zend_string *message);
242 void (*message_handler)(zend_long message, const void *data);
289 ZEND_API size_t zend_spprintf(char **message, size_t max_len, const char *format, ...) ZEND_ATTRIBU…
295 ZEND_API size_t zend_spprintf_unchecked(char **message, size_t max_len, const char *format, ...);
336 …rror_cb)(int type, zend_string *error_filename, const uint32_t error_lineno, zend_string *message);
356 ZEND_API ZEND_COLD void zend_error_zstr(int type, zend_string *message);
357 …LD void zend_error_zstr_at(int type, zend_string *filename, uint32_t lineno, zend_string *message);
369 …D_API ZEND_COLD ZEND_NORETURN void zend_strerror_noreturn(int type, int errn, const char *message);
383 ZEND_API void zend_message_dispatcher(zend_long message, const void *data);
/php-src/Zend/tests/assert/
H A Dexpect_008.phpt20 assert(true, "constant message");
21 assert(($variable && $variable) || php_sapi_name(), new OdEar("constant message"));
/php-src/ext/intl/formatter/
H A Dformatter_main.c135 zend_string *message = NULL; in PHP_FUNCTION() local
148 message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) ); in PHP_FUNCTION()
149 RETURN_STR(message); in PHP_FUNCTION()
/php-src/ext/standard/tests/mail/
H A Dbug69874.phpt13 $message = 'A Message';
18 var_dump( mail($to, $subject, $message) );
H A Dmail_variation_win.phpt49 $message = <<<HERE
51 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
52 Send an email message
55 $res = mail($to, $subject, $message);
H A Dbug80706.phpt22 $message = 'hello';
28 $res = mail($to, $subject, $message, $headers);
41 if ($mail->isAsExpected($from, $to, $subject, $message)) {
H A Dbug69874_2.phpt13 $message = 'A Message';
18 var_dump( mail($to, $subject, $message, '') );
H A Dbug66535.phpt13 $message = 'A Message';
18 var_dump( mail($to, $subject, $message) );
H A Dmail_variation2.phpt20 $message = 'A Message';
24 var_dump( mail($to, $subject, $message) );
H A Dbug72964.phpt23 $message = 'hello';
28 $res = mail($to, $subject, $message, $headers);
42 if ($mail->isAsExpected($from, $to, $subject, $message)) {
/php-src/Zend/tests/match/
H A D029.phpt6 set_error_handler(function ($errno, $message) {
7 throw new Exception("Custom error handler: $message");
H A D030.phpt6 set_error_handler(function ($errno, $message) {
7 throw new Exception("Custom error handler: $message");
/php-src/ext/intl/tests/
H A Dmsgfmt_get_set_pattern.phpt33 $res_str .= "Formatted message: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n";
37 $res_str .= "Formatted message: " . ut_msgfmt_format( $fmt, array(123, 456) ) . "\n";
54 Formatted message: 123 trees hosting 456 monkeys
56 Formatted message: 123 trees hosting 456 monkeys123 trees hosting 456 monkeys123 trees hosting 456 …
/php-src/ext/pdo_mysql/tests/inc/
H A Dmysql_pdo_test.inc200 static function skipNotMySQLnd(?string $message = null) {
201 $message = $message ?? 'skip only for mysqlnd';
202 if (!self::isPDOMySQLnd()) die($message);
205 static function skipNotTransactionalEngine(?string $message = null) {
207 $message = $message ?? 'skip Transactional engine not found';
208 if (false == self::detect_transactional_mysql_engine($db)) die($message);
/php-src/ext/standard/tests/strings/
H A Dsha1_basic.phpt13 var_dump(sha1("message digest"));
22 var_dump(sha1("message digest", false));
31 var_dump(bin2hex(sha1("message digest", true)));
/php-src/ext/gettext/
H A Dgettext_arginfo.h9 ZEND_ARG_TYPE_INFO(0, message, IS_STRING, 0)
16 ZEND_ARG_TYPE_INFO(0, message, IS_STRING, 0)
21 ZEND_ARG_TYPE_INFO(0, message, IS_STRING, 0)
/php-src/sapi/fpm/tests/
H A Dlog-bm-in-shutdown-fn.phpt2 FPM: Log message in shutdown function
38 $tester->expectLogMessage('NOTICE: PHP message: ' . str_repeat('e', 80), 1050);
H A Dlog-bm-limit-1024-msg-80.phpt2 FPM: Buffered message output log with limit 1024 and msg 80
36 $tester->expectLogMessage('NOTICE: PHP message: ' . str_repeat('e', 80), 1050);
H A Dlog-bm-limit-2048-msg-4000.phpt2 FPM: Buffered message output log with limit 2048 and msg 4000
36 $tester->expectLogMessage('NOTICE: PHP message: ' . str_repeat('t', 2023) . '...', 2048);
/php-src/ext/mbstring/tests/
H A Dgh8086.phpt14 $message = "body of testing php mail";
19 mb_send_mail($to, $subject, $message, $header);
/php-src/ext/sodium/tests/
H A Dcrypto_box.phpt35 $msg = "Here is another message, to be signed using Alice's secret key, and " .
117 $anonymous_message_to_alice = sodium_crypto_box_seal('Anonymous message',
123 $decrypted_message = 'Anonymous message';
149 string(17) "Anonymous message"

Completed in 25 milliseconds

12345678910>>...18