19 lines
488 B
PHP
19 lines
488 B
PHP
--TEST--
|
|
GH-10990 (mail() throws TypeError after iterating over $additional_headers array by reference)
|
|
--INI--
|
|
sendmail_path=rubbish 2>/dev/null
|
|
--SKIPIF--
|
|
<?php
|
|
if(substr(PHP_OS, 0, 3) == "WIN")
|
|
die("skip Won't run on Windows");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$from = 'test@example.com';
|
|
$headers = ['From' => &$from];
|
|
var_dump(mail('test@example.com', 'Test', 'Test', $headers));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: mail(): Sendmail exited with non-zero exit code 127 in %sgh10990.php on line %d
|
|
bool(false)
|