Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-7.4/tests/output/
H A Dbug70970.phpt5 function exception_error_handler($severity, $message, $file, $line)
7 throw new Exception($message, 0);
/PHP-7.4/ext/standard/tests/mail/
H A Dbug69115.phpt11 $message = "Line 1\r\nLine 2\r\nLine 3";
12 mail('user@example.com', 'My Subject', $message, "From: me@me.me");
/PHP-7.4/Zend/tests/
H A Dbug76534.phpt5 set_error_handler(function ($severity, $message, $file, $line) {
6 throw new \Exception($message);
H A Dbug78239.phpt5 function handleError($level, $message, $file = '', $line = 0, $context = [])
7 throw new ErrorException($message, 0, $level, $file, $line);
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-7.4/Zend/tests/generators/
H A Dgenerator_throwing_during_function_call.phpt23 echo 'Caught exception with message "', $e->getMessage(), '"', "\n";
31 Caught exception with message "test"
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchheader_variation5.phpt10 * Description: Get the full unfiltered header for a message
26 '1,3', '1:3', // message sequences instead of numbers
52 Warning: imap_fetchheader(): Bad message number in %s on line %d
58 Warning: imap_fetchheader(): Bad message number in %s on line %d
H A Dimap_body_basic.phpt10 * Description: Read the message body.
46 string(%d) "1: this is a test message, please ignore%a"
47 string(%d) "1: this is a test message, please ignore%a"
/PHP-7.4/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";
51 Formatted message: 123 trees hosting 456 monkeys
53 Formatted message: 123 trees hosting 456 monkeys123 trees hosting 456 monkeys123 trees hosting 456 …
/PHP-7.4/ext/intl/formatter/
H A Dformatter_main.c140 zend_string *message = NULL; in PHP_FUNCTION() local
156 message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) ); in PHP_FUNCTION()
157 RETURN_STR(message); in PHP_FUNCTION()
/PHP-7.4/ext/sodium/tests/
H A Dsodium_error_001.phpt9 function do_crypto_shorthash($message, $key) {
10 return sodium_crypto_shorthash($message, $key);
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"
/PHP-7.4/Zend/tests/assert/
H A Dexpect_008.phpt20 assert(true, "constant message");
21 assert(($variable && $variable) || php_sapi_name(), new OdEar("constant message"));
/PHP-7.4/ext/standard/tests/general_functions/
H A Derror_get_last.phpt24 ["message"]=>
36 ["message"]=>
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_get_warnings.phpt56 if ((!is_string($warning->message)) || ('' == $warning->message)) /* NULL or not there at all */
57 …tf("[011] Expecting string/not empty, got %s/%s\n", gettype($warning->message), $warning->message);
99 if (!is_string($warning->message) || ('' == $warning->message))
100 printf("[025] Expecting string, got %s/%s", gettype($warning->message), $warning->message);
113 if ('' != ($tmp = $warning->message))
131 while ($warning->next() && ('' != ($tmp = $warning->message))) {
/PHP-7.4/sapi/fpm/tests/
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);
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);
/PHP-7.4/ext/standard/tests/strings/
H A Dsha1_basic.phpt16 var_dump(sha1("message digest"));
25 var_dump(sha1("message digest", false));
34 var_dump(bin2hex(sha1("message digest", true)));
/PHP-7.4/ext/oci8/tests/
H A Derror.phpt2 oci_error() error message for parsing error
36 ["message"]=>
H A Dbug47281_tt.phpt5 …ledb' => false, 'timesten' => true); // test runs on these DBs: shorter message length in TimesTen
36 echo $m['message'], "\n";
/PHP-7.4/Zend/
H A Dzend_extensions.c234 int message; in zend_extension_message_dispatcher() local
240 message = va_arg(args, int); in zend_extension_message_dispatcher()
242 extension->message_handler(message, arg); in zend_extension_message_dispatcher()
246 ZEND_API void zend_extension_dispatch_message(int message, void *arg) in zend_extension_dispatch_message() argument
248 …end_extensions, (llist_apply_with_args_func_t) zend_extension_message_dispatcher, 2, message, arg); in zend_extension_dispatch_message()
/PHP-7.4/tests/run-test/
H A Dtest008.phpt2 Error message handling (without ZendOpcache)
14 // and than verify if a message is given by a division by zero.
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat.c177 zend_string* message = NULL; in PHP_FUNCTION() local
194 message = intl_error_get_message( &mfo->mf_data.error ); in PHP_FUNCTION()
195 RETURN_STR(message); in PHP_FUNCTION()

Completed in 30 milliseconds

12345678910>>...17