Home
last modified time | relevance | path

Searched refs:subject (Results 1 – 25 of 139) sorted by relevance

123456

/PHP-8.3/ext/standard/tests/strings/
H A Dbug39621.phpt7 $subject = "qxxx\0xxxxxxxx";
10 $result = str_replace ( $search, $replace, $subject );
15 $subject = "qxxx\0xxxxxxxx";
18 $result = str_ireplace ( $search, $replace, $subject );
23 $subject = "qxxx\0xxxxxxxx";
26 $result = str_replace ( $search, $replace, $subject );
31 $subject = "qxXx\0xxxxxxxx";
34 $result = str_ireplace ( $search, $replace, $subject );
/PHP-8.3/ext/standard/tests/mail/
H A Dmail_basic7.phpt16 $subject = 'Test Subject';
33 var_dump(mail($to, $subject, $message, $additional_headers));
41 $subject = 'Test Subject';
51 mail($to, $subject, $message, ['from' => array('foo2')]);
69 mail($to, $subject, $message, ['to' => array('foo5')]);
75 mail($to, $subject, $message, ['bcc' => array('foo6')]);
96 $subject = 'Test Subject';
112 mail($to, $subject, $message, ['foo3' => array(123)]);
130 mail($to, $subject, $message, ['foo6' => array(NULL)]);
145 $subject = 'Test Subject';
[all …]
H A Dbug72964.phpt20 function find_and_delete_message($username, $subject) {
37 if ($info->subject === $subject) {
51 $subject = bin2hex(random_bytes(16));
57 $res = mail($to, $subject, $message, $headers);
65 if (!find_and_delete_message("$user@$domain", $subject)) {
H A Dbug80706.phpt20 function find_and_delete_message($username, $subject) {
37 if ($info->subject === $subject) {
54 $subject = bin2hex(random_bytes(16));
60 $res = mail($to, $subject, $message, $headers);
68 if (!find_and_delete_message("$user@$domain", $subject)) {
H A Dmail_basic6.phpt18 $subject = 'Test Subject';
26 var_dump( mail($to, $subject, $message, $additional_headers) );
36 var_dump( mail($to, $subject, $message, $additional_headers) );
47 var_dump( mail($to, $subject, $message, $additional_headers) );
58 var_dump( mail($to, $subject, $message, $additional_headers) );
68 var_dump( mail($to, $subject, $message, $additional_headers) );
78 var_dump( mail($to, $subject, $message, $additional_headers) );
88 var_dump( mail($to, $subject, $message, $additional_headers) );
98 var_dump( mail($to, $subject, $message, $additional_headers) );
108 var_dump( mail($to, $subject, $message, $additional_headers) );
[all …]
H A Dmail_basic.phpt13 $subject = 'Test Subject';
21 var_dump( mail($to, $subject, $message, $additional_headers) );
27 var_dump( mail($to, $subject, $message) );
H A Dbug80751.phpt20 function find_and_delete_message($username, $subject) {
37 if ($info->subject === $subject) {
60 $subject = bin2hex(random_bytes(16));
66 $res = mail($to, $subject, $message, $headers);
74 if (!find_and_delete_message("$user@$domain", $subject)) {
/PHP-8.3/ext/pcre/
H A Dphp_pcre.stub.php102 function preg_match(string $pattern, string $subject, &$matches = null, int $flags = 0, int $offset… argument
105 function preg_match_all(string $pattern, string $subject, &$matches = null, int $flags = 0, int $of… argument
111 function preg_replace(string|array $pattern, string|array $replacement, string|array $subject, int … argument
117 function preg_filter(string|array $pattern, string|array $replacement, string|array $subject, int $… argument
123 function preg_replace_callback(string|array $pattern, callable $callback, string|array $subject, in… argument
126 function preg_replace_callback_array(array $pattern, string|array $subject, int $limit = -1, &$coun… argument
132 function preg_split(string $pattern, string $subject, int $limit = -1, int $flags = 0): array|false… argument
H A Dphp_pcre.c1107 Z_PARAM_STR(subject) in php_do_pcre_match()
1665 match = subject + offsets[0]; in php_pcre_replace_impl()
1754 piece = subject + start_offset; in php_pcre_replace_impl()
1919 match = subject + offsets[0]; in php_pcre_replace_func_impl()
1963 piece = subject + start_offset; in php_pcre_replace_func_impl()
2141 result = php_pcre_replace(regex_str, subject, ZSTR_VAL(subject), ZSTR_LEN(subject), in php_replace_in_subject()
2169 zend_string_addref(subject); in php_replace_in_subject_func()
2182 zend_string_release(subject); in php_replace_in_subject_func()
2183 subject = result; in php_replace_in_subject_func()
2189 return subject; in php_replace_in_subject_func()
[all …]
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-8.3/ext/pcre/tests/
H A Dbug70345.phpt6 $subject = "aaaaxyzaaaa";
8 var_dump(preg_split($regex, $subject));
11 $subject = "aaaaxyzaaaa";
12 preg_match($regex, $subject, $matches);
H A Dbug70232.phpt6 $subject = "123 a123 1234567 b123 123";
7 preg_match_all($pattern, $subject, $matches);
9 var_dump(preg_replace($pattern, "*", $subject));
10 var_dump(preg_split($pattern, $subject));
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_match_error2.phpt7 * Testing how preg_match reacts to being passed the wrong type of subject argument
35 preg_match(): Argument #2 ($subject) must be of type string, array given
36 preg_match(): Argument #2 ($subject) must be of type string, stdClass given
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_jit_match.c85 pcre2_jit_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length, in pcre2_jit_match() argument
92 (void)subject; in pcre2_jit_match()
124 arguments.str = subject + start_offset; in pcre2_jit_match()
125 arguments.begin = subject; in pcre2_jit_match()
126 arguments.end = subject + length; in pcre2_jit_match()
128 arguments.startchar_ptr = subject; in pcre2_jit_match()
173 match_data->subject = (rc >= 0 || rc == PCRE2_ERROR_PARTIAL)? subject : NULL; in pcre2_jit_match()
175 match_data->startchar = arguments.startchar_ptr - subject; in pcre2_jit_match()
H A Dpcre2_substitute.c326 scb.input = subject; in pcre2_substitute()
332 if (subject == NULL) in pcre2_substitute()
335 subject = (PCRE2_SPTR)""; in pcre2_substitute()
341 length = subject? PRIV(strlen)(subject) : 0; in pcre2_substitute()
373 if (!replacement_only) CHECKMEMCPY(subject, start_offset); in pcre2_substitute()
414 if (subject[start_offset-1] == CHAR_CR && in pcre2_substitute()
418 subject[start_offset] == CHAR_LF) in pcre2_substitute()
430 (subject[start_offset] & 0xfc00) == 0xdc00) in pcre2_substitute()
773 subptr = subject + ovector[group*2]; in pcre2_substitute()
774 subptrend = subject + ovector[group*2 + 1]; in pcre2_substitute()
[all …]
/PHP-8.3/ext/ldap/tests/
H A Dldap_escape_dn.phpt8 $subject = 'foo=bar(baz)*';
10 var_dump(ldap_escape($subject, '', LDAP_ESCAPE_DN));
H A Dldap_escape_all.phpt8 $subject = 'foo=bar(baz)*';
10 var_dump(ldap_escape($subject));
H A Dldap_escape_filter.phpt8 $subject = 'foo=bar(baz)*';
10 var_dump(ldap_escape($subject, '', LDAP_ESCAPE_FILTER));
H A Dldap_escape_both.phpt8 $subject = 'foo=bar(baz)*';
10 var_dump(ldap_escape($subject, '', LDAP_ESCAPE_DN | LDAP_ESCAPE_FILTER));
H A Dldap_escape_ignore.phpt8 $subject = 'foo=bar(baz)*';
11 var_dump(ldap_escape($subject, $ignore));
H A Dbug72021.phpt9 $subject = " Joe,= \rSmith ";
11 var_dump(ldap_escape($subject, '', LDAP_ESCAPE_DN));
/PHP-8.3/ext/iconv/tests/
H A Dgh7980.phpt7 $subject = '=?windows-1258?Q?DSI_Charg=E9_de_Formation_Jean_Dupont?= <jdupont@example.fr>';
8 var_dump(iconv_mime_decode($subject, ICONV_MIME_DECODE_STRICT, 'UTF-8'));
H A Dbug53891.phpt14 var_dump(iconv_mime_encode('subject', "d obeybiubrsfqllpdtpge…", $preferences));
17 string(54) "subject: =?utf-8?Q?d=20obeybiubrsfqllpdtpge=E2=80=A6?="
/PHP-8.3/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 ]

Completed in 38 milliseconds

123456