Searched refs:extra_cmd (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/ext/standard/ |
H A D | mail.c | 245 zend_string *extra_cmd=NULL; in PHP_FUNCTION() local 259 Z_PARAM_PATH_STR(extra_cmd) in PHP_FUNCTION() 316 extra_cmd = php_escape_shell_cmd(force_extra_parameters); in PHP_FUNCTION() 317 } else if (extra_cmd) { in PHP_FUNCTION() 318 extra_cmd = php_escape_shell_cmd(ZSTR_VAL(extra_cmd)); in PHP_FUNCTION() 321 …str && ZSTR_LEN(headers_str) ? ZSTR_VAL(headers_str) : NULL, extra_cmd ? ZSTR_VAL(extra_cmd) : NUL… in PHP_FUNCTION() 331 if (extra_cmd) { in PHP_FUNCTION() 332 zend_string_release_ex(extra_cmd, 0); in PHP_FUNCTION() 510 if (extra_cmd != NULL) { in php_mail() 511 spprintf(&sendmail_cmd, 0, "%s %s", sendmail_path, extra_cmd); in php_mail() [all …]
|
H A D | php_mail.h | 23 …st char *to, const char *subject, const char *message, const char *headers, const char *extra_cmd);
|
/PHP-8.3/ext/mbstring/ |
H A D | mbstring.c | 4201 zend_string *extra_cmd = NULL; in PHP_FUNCTION() local 4236 Z_PARAM_PATH_STR_OR_NULL(extra_cmd) in PHP_FUNCTION() 4425 extra_cmd = php_escape_shell_cmd(force_extra_parameters); in PHP_FUNCTION() 4426 } else if (extra_cmd) { in PHP_FUNCTION() 4427 extra_cmd = php_escape_shell_cmd(ZSTR_VAL(extra_cmd)); in PHP_FUNCTION() 4430 …ail(to_r, ZSTR_VAL(subject), message, ZSTR_VAL(str_headers), extra_cmd ? ZSTR_VAL(extra_cmd) : NUL… in PHP_FUNCTION() 4432 if (extra_cmd) { in PHP_FUNCTION() 4433 zend_string_release_ex(extra_cmd, 0); in PHP_FUNCTION()
|
Completed in 22 milliseconds