개발 꿀팁/PHP

php 그림을 mysql bolb 형식으로 저장

Jammie 2022. 11. 2. 14:45
반응형

바이너리 메모리

    public function blob()
    {
        $imgBlob =file_get_contents("https://doc.shiyanlou.com/document-uid7682labid1135timestamp1436521080691.png/wm");
        db('test')->insert(['img' => $imgBlob]);
    }

읽기

public function getblob()
    {
 
        $img = db('test')->where('id',1)->find();
        header("Content-type: png");
        echo $img['img'];
        exit;
    }
반응형