1--TEST--
2Bug #60227 (header() cannot detect the multi-line header with CR), CRLF
3--INI--
4expose_php=0
5--FILE--
6<?php
7header("X-foo: e\r\nfoo");
8echo 'foo';
9?>
10--EXPECTF--
11Warning: Header may not contain more than a single header, new line detected in %s on line %d
12foo
13--EXPECTHEADERS--
14Content-type: text/html
15