Home
last modified time | relevance | path

Searched refs:subject (Results 26 – 50 of 124) sorted by relevance

12345

/php-src/ext/pcre/
H A Dphp_pcre_arginfo.h6 ZEND_ARG_TYPE_INFO(0, subject, IS_STRING, 0)
17 ZEND_ARG_TYPE_MASK(0, subject, MAY_BE_STRING|MAY_BE_ARRAY, NULL)
27 ZEND_ARG_TYPE_MASK(0, subject, MAY_BE_STRING|MAY_BE_ARRAY, NULL)
35 ZEND_ARG_TYPE_MASK(0, subject, MAY_BE_STRING|MAY_BE_ARRAY, NULL)
43 ZEND_ARG_TYPE_INFO(0, subject, IS_STRING, 0)
/php-src/ext/standard/tests/mail/
H A Dmail_variation1.phpt16 $subject = 'Test Subject';
18 var_dump( mail($to, $subject, $message) );
H A Dmail_basic5.phpt17 $subject = 'Test Subject';
21 var_dump( mail($to, $subject, $message) );
H A Dbug69874.phpt12 $subject = 'Test Subject';
18 var_dump( mail($to, $subject, $message) );
H A Dmail_util.inc137 private function getUidsBySubject(string $subject): array
144 $this->mailConnecter->send(self::SEARCH, "UID SEARCH SUBJECT \"{$subject}\"");
150 public function getMailsBySubject(string $subject): MailCollection
154 $this->getUidsBySubject($subject),
194 public function deleteMailsBySubject(string $subject): void
198 $this->getUidsBySubject($subject),
208 public function isAsExpected(string $from, string $to, string $subject, string $message): bool
228 if ($this->getHeader('Subject', true) !== $subject) {
230 echo "subject does not match.\n";
H A Dbug51604.phpt10 $subject = 'Test Subject';
17 var_dump( mail($to, $subject, $message, $additional_headers) );
H A Dbug69874_2.phpt12 $subject = 'Test Subject';
18 var_dump( mail($to, $subject, $message, '') );
H A Dbug66535.phpt12 $subject = 'Test Subject';
18 var_dump( mail($to, $subject, $message) );
H A Dmail_variation2.phpt19 $subject = 'Test Subject';
24 var_dump( mail($to, $subject, $message) );
/php-src/sapi/cli/tests/
H A D006.phpt72 Parameter #1 [ <required> string $subject ]
83 Parameter #1 [ <required> string $subject ]
95 Parameter #2 [ <required> array|string $subject ]
106 Parameter #2 [ <required> array|string $subject ]
117 Parameter #2 [ <required> array|string $subject ]
128 Parameter #1 [ <required> array|string $subject ]
139 Parameter #1 [ <required> string $subject ]
/php-src/ext/pcre/tests/
H A Dbug72463.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
H A Dbug72463_2.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
H A Dpreg_replace_error1.phpt24 $subject = 'a';
26 var_dump(preg_replace($regex_value, $replace, $subject));
30 var_dump(preg_replace($regex_value, $replace, $subject));
H A Dpreg_match_all_error3.phpt13 $subject = 'string';
14 var_dump(preg_match_all($regex, $subject, 'test'));
H A Dpreg_split_error1.phpt23 $subject = '1 2 a 3 4 b 5 6';
26 var_dump(preg_split($regex_value, $subject));
33 var_dump(preg_split($regex_value, $subject));
H A Dpreg_match_error1.phpt21 $subject = 'this is a test';
24 var_dump(preg_match($regex_value, $subject));
31 var_dump(preg_match($regex_value, $subject));
H A Dpreg_match_all_error1.phpt23 $subject = 'test';
26 var_dump(preg_match_all($regex_value, $subject, $matches1));
34 var_dump(preg_match_all($regex_value, $subject, $matches));
/php-src/ext/openssl/tests/
H A Dbug64802.phpt2 Bug #64802: openssl_x509_parse fails to parse subject properly in some cases
13 var_dump($r['subject']['commonName']);
H A Dsni_server.phpt42 var_dump(openssl_x509_parse($cert)['subject']['CN']);
48 var_dump(openssl_x509_parse($cert)['subject']['CN']);
54 var_dump(openssl_x509_parse($cert)['subject']['CN']);
H A Dsni_server_key_cert.phpt51 var_dump(openssl_x509_parse($cert)['subject']['CN']);
57 var_dump(openssl_x509_parse($cert)['subject']['CN']);
63 var_dump(openssl_x509_parse($cert)['subject']['CN']);
/php-src/ext/zend_test/tests/iterators/
H A Ddouble-rewind.phpt8 $subject = new \ZendTest\Iterators\TraversableTest();
9 $it = $subject->getIterator();
/php-src/ext/curl/tests/
H A Dcurl_setopt_ssl.phpt29 echo "client cert subject not in response\n";
31 echo "client cert subject in response\n";
190 client cert subject in response
197 client cert subject not in response
205 client cert subject not in response
213 client cert subject in response
222 client cert subject in response
231 client cert subject in response
240 client cert subject not in response
/php-src/ext/standard/
H A Dmail.c243 char *subject=NULL; in PHP_FUNCTION() local
253 Z_PARAM_PATH(subject, subject_len) in PHP_FUNCTION()
296 subject_r = estrndup(subject, subject_len); in PHP_FUNCTION()
310 subject_r = subject; in PHP_FUNCTION()
336 if (subject_r != subject) { in PHP_FUNCTION()
411 PHPAPI int php_mail(const char *to, const char *subject, const char *message, const char *headers, … in php_mail() argument
437 …bject: %s", zend_get_executed_filename(), zend_get_executed_lineno(), to, hdr ? hdr : "", subject); in php_mail()
495 …if (TSendMail(INI_STR("SMTP"), &tsm_err, &tsm_errmsg, hdr, subject, to, message, NULL, NULL, NULL)… in php_mail()
554 fprintf(sendmail, "Subject: %s%s", subject, line_sep); in php_mail()
/php-src/ext/mbstring/tests/
H A Dgh8086.phpt13 $subject = "test mail";
19 mb_send_mail($to, $subject, $message, $header);
H A Dgh7902.phpt16 $subject = "test mail";
22 mb_send_mail($to, $subject, $message, $header);

Completed in 23 milliseconds

12345