php -c /etc/php/VERSION/CONFD/php.ini -d "error_reporting='~E_ALL'" -r 'var_dump(ini_get_all("session"));'
jQuery.each(jQuery('#file')[0].files, function(i, name) {
data.append('attachfile[]', name);
});
} $filename = "./uploads/". $_FILES['attachfile']["name"];
$mail->addAttachment($_FILES['attachfile']['tmp_name'], $_FILES['attachfile']['name']);
На сайте настроен 301 редирект на Главную, если запрашивается несуществующая страница
На сайте настроен 301 редирект на Главную
В этом случае почему-то http_response_code() возвращает ответ 200
возможно, тупо подойдет Яндекс Метрика
With two arguments, the first argument specifies the offset of the first row to return, and the second specifies the maximum number of rows to return. The offset of the initial row is 0 (not 1):
grecaptcha.execute('SecretKey'...
$url = 'https://www.google.com/recaptcha/api/siteverify?secret=' . $secretKey ....
request_object_connection:
request_id int
object_id int
subject
Тема отправляемого письма.
Предостережение
Тема должна соответствовать » RFC 2047.
function mail_utf8($to, $from_user, $from_email,
$subject = '(No subject)', $message = '')
{
$from_user = "=?UTF-8?B?".base64_encode($from_user)."?=";
$subject = "=?UTF-8?B?".base64_encode($subject)."?=";
$headers = "From: $from_user <$from_email>\r\n".
"MIME-Version: 1.0" . "\r\n" .
"Content-type: text/html; charset=UTF-8" . "\r\n";
return mail($to, $subject, $message, $headers);
}
$headers .= "From: {$smtp_from[0]} <{$smtp_from[1]}>\r\n"; // от кого письмо
// от кого
$from = array(
"Евгений", // Имя отправителя
"test@vk-book.ru" // почта отправителя
);
...
$result = $mailSMTP->send($to, 'Тема письма с копиями ', 'Текст письма', $from);
fputs($socket, "MAIL FROM: <".$this->smtp_username.">\r\n");