19 lines
388 B
PHP
19 lines
388 B
PHP
--TEST--
|
|
GH-8086 (Mail() function not working correctly in PHP 8.x)
|
|
--INI--
|
|
sendmail_path={MAIL:gh8086.out}
|
|
mail.mixed_lf_and_crlf=on
|
|
--FILE--
|
|
<?php
|
|
var_dump(mail('user@example.com', 'Test Subject', 'A Message', 'KHeaders'));
|
|
$mail = file_get_contents('gh8086.out');
|
|
var_dump(preg_match_all('/(?<!\r)\n/', $mail));
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
unlink('gh8086.out');
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
int(5)
|