Home
last modified time | relevance | path

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

123456

/PHP-5.5/ext/standard/tests/mail/
H A Dbug69874.phpt13 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
23 $subject = 'Test Subject';
29 var_dump( mail($to, $subject, $message) );
H A Dmail_variation2.phpt14 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
25 $subject = 'Test Subject';
30 var_dump( mail($to, $subject, $message) );
H A Dbug69874_2.phpt13 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
23 $subject = 'Test Subject';
29 var_dump( mail($to, $subject, $message, '') );
H A Dbug66535.phpt13 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
23 $subject = 'Test Subject';
29 var_dump( mail($to, $subject, $message) );
H A Dmail_basic2.phpt13 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
24 $subject = 'Test Subject';
33 var_dump( mail($to, $subject, $message, $additional_headers, $additional_parameters) );
H A Dmail_basic_alt1-win32.phpt16 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
32 $subject = "$subject_prefix: Basic PHPT test for mail() function";
35 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
39 $res = mail($to, $subject, $message);
H A Dmail_basic_alt2-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
28 $subject = "$subject_prefix: Basic PHPT test for mail() function";
31 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
37 $res = mail($to, $subject, $message, $extra_headers);
H A Dmail_basic_alt3-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
28 $subject = "$subject_prefix: Basic PHPT test for mail() function";
31 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
37 $res = mail($to, $subject, $message, $extra_headers);
H A Dmail_basic_alt4-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
28 $subject = "$subject_prefix: Basic PHPT test for mail() function";
31 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
38 $res = mail($to, $subject, $message, $extra_headers, $extra_parameters);
H A Dmail_variation_alt1-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
31 $subject = "$subject_prefix: Basic PHPT test for mail() function";
34 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
38 $res = mail($to, $subject, $message);
H A Dmail_variation_alt2-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
31 $subject = "$subject_prefix: Basic PHPT test for mail() function";
34 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
38 $res = mail($to, $subject, $message);
H A Dmail_variation_alt3-win32.phpt15 /* Prototype : int mail(string to, string subject, string message [, string additional_headers [, …
30 $subject = "$subject_prefix: Basic PHPT test for mail() function";
33 bool mail ( string \$to , string \$subject , string \$message [, string \$additional_headers [, str…
37 $res = mail($to, $subject, $message);
H A Dbug51604.phpt15 $subject = 'Test Subject';
22 var_dump( mail($to, $subject, $message, $additional_headers) );
/PHP-5.5/ext/pcre/tests/
H A Dpreg_filter.phpt6 $subject = array('1', 'a', '2', 'b', '3', 'A', 'B', '4');
10 var_dump(preg_filter($pattern, $replace, $subject));
H A Dpreg_replace_error1.phpt6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]])
21 $subject = 'a';
24 var_dump(preg_replace($regex_value, $replace, $subject));
27 var_dump(preg_replace($regex_value, $replace, $subject));
H A Dpreg_match_error1.phpt6 …* proto int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int of…
20 $subject = 'this is a test';
23 var_dump(preg_match($regex_value, $subject));
26 var_dump(preg_match($regex_value, $subject));
H A Dpreg_split_error1.phpt6 * proto array preg_split(string pattern, string subject [, int limit [, int flags]])
20 $subject = '1 2 a 3 4 b 5 6';
23 var_dump(preg_split($regex_value, $subject));
26 var_dump(preg_split($regex_value, $subject));
H A Dpreg_match_all_error1.phpt6 * proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int of…
20 $subject = 'test';
23 var_dump(preg_match_all($regex_value, $subject, $matches1));
27 var_dump(preg_match_all($regex_value, $subject, $matches));
H A Dpreg_match_all_error.phpt6 * proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int of…
16 $subject = 'string_val';
20 var_dump(preg_match_all($pattern, $subject, $matches, $flags, $offset, $extra_arg));
H A Dpreg_match_error.phpt6 …* proto int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int of…
16 $subject = 'string_val';
20 var_dump(preg_match($pattern, $subject, $matches, $flags, $offset, $extra_arg));
H A Dpreg_replace_error.phpt6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]])
17 $subject = 'string_val';
20 var_dump(preg_replace($regex, $replace, $subject, $limit, $count, $extra_arg));
H A Dpreg_split_error.phpt6 * proto array preg_split(string pattern, string subject [, int limit [, int flags]])
16 $subject = 'string_val';
20 var_dump(preg_split($pattern, $subject, $limit, $flags, $extra_arg));
H A Dpreg_replace_callback_error.phpt6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]])
21 $subject = 'there are 7 words in this sentence.';
24 var_dump(preg_replace_callback($regex, 'integer_word', $subject, $limit, $count, $extra_arg));
/PHP-5.5/ext/spl/internal/
H A Dregexiterator.inc74 $subject = ($this->flags & self::USE_KEY) ? $this->key : $this->current;
78 return preg_match($this->regex, $subject, $matches, $this->preg_flags);
82 return preg_match($this->regex, $subject, $this->current, $this->preg_flags) > 0;
86 return preg_match_all($this->regex, $subject, $this->current, $this->preg_flags) > 0;
90 preg_split($this->regex, $subject, $this->current, $this->preg_flags) > 1;
94 $result = preg_replace($this->regex, $this->replacement, $subject);
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar1266 $this->subject = $method;
1365 protected $subject;
1600 $this->subject = $function;
1660 $this->subject = $function;
1687 $list = $this->subject->getExtraArgumentList();
1691 $list = $this->subject->getShortArgumentList();
1720 $this->subject = $function;
1822 $this->subject = $method;
1869 protected $subject;
2011 protected $subject;
[all …]

Completed in 38 milliseconds

123456