PHP は print 文を処理した際に HTTP レスポンスヘッダが未送信の場合、HTTP ステータス 200 とContent-Type: text/html; charset=UTF-8ヘッダが送信されます。 <?phpprint"hoge\n"; は header("HTTP/1.1 200 OK");header("Content-Type: text/html; charset=UTF-8");print"hoge\n"; と同等...