Home
last modified time | relevance | path

Searched refs:message (Results 51 – 75 of 437) sorted by relevance

12345678910>>...18

/PHP-5.4/ext/imap/tests/
H A Dimap_fetchbody_basic.phpt20 // set up mailbox with one message
71 %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
73 %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
76 %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
79 %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
H A Dimap_fetchbody_variation6.phpt28 '1,3', '1:3', // message sequences instead of numbers
51 Warning: imap_fetchbody(): Bad message number in %s on line %d
57 Warning: imap_fetchbody(): Bad message number in %s on line %d
64 %unicode|string%(%d) "1: this is a test message, please ignore%a"
69 %unicode|string%(%d) "1: this is a test message, please ignore%a"
H A Dbug35669.phpt27 $plain["description"] = "Plaintype part of message";
37 $html["description"] = "HTML part of message";
59 Content-Description: Plaintype part of message
65 Content-Description: HTML part of message
H A Dimap_body_basic.phpt10 * Description: Read the message body.
46 %unicode|string%(%d) "1: this is a test message, please ignore%a"
47 %unicode|string%(%d) "1: this is a test message, please ignore%a"
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
/PHP-5.4/win32/
H A Dwsyslog.c81 void syslog(int priority, const char *message, ...) in syslog() argument
107 va_start(args, message); /* initialize vararg mechanism */ in syslog()
108 vspprintf(&tmp, 0, message, args); /* build message */ in syslog()
/PHP-5.4/ext/standard/tests/mail/
H A Dbug51604.phpt2 Bug #51604 (newline in end of header is shown in start of message)
16 $message = 'A Message';
22 var_dump( mail($to, $subject, $message, $additional_headers) );
H A Dmail_error.phpt5 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
6 * Description: Send an email message
18 $message = 'string_val';
22 var_dump( mail($to, $subject, $message, $additional_headers, $additional_parameters, $extra_arg) );
/PHP-5.4/tests/lang/
H A D018.phpt8 $message = "echo \"hey\n\";";
11 eval($message);
/PHP-5.4/ext/soap/tests/bugs/
H A Dbug40609.wsdl26message name="updateMessage"><wsdl:part name="part1" element="ns:update" /></wsdl:message><wsdl:me…
/PHP-5.4/ext/oci8/tests/
H A Dcommit_002.phpt31 echo 'Could not execute: '. $m['message'] . "\n";
36 echo 'Could not commit: '. $m['message'] . "\n";
45 echo 'Could not execute: '. $m['message'] . "\n";
50 echo 'Could not commit: '. $m['message'] . "\n";
/PHP-5.4/Zend/
H A Dzend_extensions.c199 int message; in zend_extension_message_dispatcher() local
205 message = va_arg(args, int); in zend_extension_message_dispatcher()
207 extension->message_handler(message, arg); in zend_extension_message_dispatcher()
211 ZEND_API void zend_extension_dispatch_message(int message, void *arg) in zend_extension_dispatch_message() argument
215 …ions, (llist_apply_with_args_func_t) zend_extension_message_dispatcher TSRMLS_CC, 2, message, arg); in zend_extension_dispatch_message()
/PHP-5.4/ext/intl/formatter/
H A Dformatter_main.c128 char* message = NULL; in PHP_FUNCTION() local
144 message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) TSRMLS_CC ); in PHP_FUNCTION()
145 RETURN_STRING( message, 0); in PHP_FUNCTION()
/PHP-5.4/ext/mysqli/
H A Dmysqli_prop.c209 MYSQLND_ERROR_LIST_ELEMENT * message; in link_error_list_read() local
212 message; in link_error_list_read()
218 add_assoc_long_ex(single_error, "errno", sizeof("errno"), message->error_no); in link_error_list_read()
219 add_assoc_string_ex(single_error, "sqlstate", sizeof("sqlstate"), message->sqlstate, 1); in link_error_list_read()
220 add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1); in link_error_list_read()
406 MYSQLND_ERROR_LIST_ELEMENT * message; in stmt_error_list_read() local
409 message; in stmt_error_list_read()
410message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->erro… in stmt_error_list_read()
415 add_assoc_long_ex(single_error, "errno", sizeof("errno"), message->error_no); in stmt_error_list_read()
416 add_assoc_string_ex(single_error, "sqlstate", sizeof("sqlstate"), message->sqlstate, 1); in stmt_error_list_read()
[all …]
/PHP-5.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-5.4/ext/sockets/tests/
H A Dsocket_import_stream-1.phpt20 socket_write($sock, "test message");
26 string(12) "test message"
/PHP-5.4/ext/hash/
H A DREADME5 $digest = hash($algoname, $message);
15 hash_update($context, $message);
/PHP-5.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-5.4/ext/standard/tests/general_functions/
H A Derror_get_last.phpt24 ["message"]=>
36 ["message"]=>
/PHP-5.4/ext/intl/msgformat/
H A Dmsgformat.c147 char* message = NULL; in PHP_FUNCTION() local
164 message = intl_error_get_message( &mfo->mf_data.error TSRMLS_CC ); in PHP_FUNCTION()
165 RETURN_STRING( message, 0); in PHP_FUNCTION()
/PHP-5.4/Zend/tests/
H A Dbug52361.phpt26 1. exception 'Exception' with message 'aaa' in %sbug52361.php:5
31 2. exception 'Exception' with message 'bbb' in %sbug52361.php:13
H A Dexception_008.phpt27 Fatal error: Uncaught exception 'Exception' with message 'First' in %sexception_008.php:%d
32 Next exception 'Exception' with message 'Second' in %sexception_008.php:%d
/PHP-5.4/ext/standard/tests/serialize/
H A Dbug69793.phpt5 ….'trace";a:0:{}s:19:"'."\0".'Exception'."\0".'previous";i:10;s:10:"'."\0".'*'."\0".'message";N;}');
10 Notice: Undefined property: Exception::$message in %s/bug69793.php on line %d
/PHP-5.4/ext/spl/
H A Dspl.php258 protected $message; variable in Exception
284 function __construct($message = NULL, $code = 0) { argument
286 $this->message = $message;
299 return $this->message;
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcreposix.c212 const char *message, *addmessage; in regerror() local
215 message = (errcode >= (int)(sizeof(pstring)/sizeof(char *)))? in regerror()
217 length = strlen(message) + 1; in regerror()
226 sprintf(errbuf, "%s%s%-6d", message, addmessage, (int)preg->re_erroffset); in regerror()
229 strncpy(errbuf, message, errbuf_size - 1); in regerror()

Completed in 37 milliseconds

12345678910>>...18