PHPヘッダ()生成ファイル

730 ワード

phpコードセグメント:
public function httpHeader(){
    $id = 21;
    
    $sql = "select pass from user where id=" . $id;

    $pass = $mysql->getResult($sql);
    
    
    //       pass     ,            
    
    header("Content-type:text/plain");

    header("Accept-Ranges:bytes");

    header("Content-Disposition:attachement; filename=" . $pas . ".txt");

    header("Cache-Control:must-revalidate,post-check=0,pre-check=0");

    header("Pragma:no-cache");

    
    echo $pass;

}

生成されたファイルをaリンクに配置します.
<a href="/index/httpHeader">      </a>

これにより、バックグラウンドサーバに保存する必要がなくなり、オンラインでファイルを簡単に生成できます.