- 2014-6-13
誤
$c->create_response(200, [
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline’,’filename’=>’test.txt’
], ["hello"]);
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline’,’filename’=>’test.txt’
], ["hello"]);
正解
$c->create_response(200, [
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline;filename=test.txt’
], ["hello"]);
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline;filename=test.txt’
], ["hello"]);
ここで引っかかる人は多いかと。