push() 공개 정적인 메소드

Push a header on the stack
public static push ( string $header )
$header string
예제 #1
0
파일: SapiResponse.php 프로젝트: phly/http
/**
 * Emit a header, without creating actual output artifacts
 *
 * @param string $value
 */
function header($value)
{
    HeaderStack::push($value);
}