1. 程式人生 > >php隱藏圖片下載地址

php隱藏圖片下載地址

簡介

有時根據圖片url卻不能下載圖片。用php是如何實現的?

方法1

    public function test()
    {

        $img = "<img src='https://helpee.club/hoges/hoge2?f=minna.png'>";

        echo $img;

        $this->autoRender = false;

    }

方法2

    public function hoge2()
    {
        $file = $_GET['f'];

        $path = WWW_ROOT."img/".$file;
        header('Content-Disposition: inline; filename="' . $path . '"');

        //必要に応じ、png , jpg , gif などに変更
        header('Content-type: image/png');
        readfile($path);




        $this->autoRender = false;
    }


檢視原文:https://www.huuinn.com/archives/610
更多技術乾貨:風勻坊
關注公眾號:風勻坊