반응형
바이너리 메모리
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;
}
반응형
'개발 꿀팁 > PHP' 카테고리의 다른 글
PHP 구현 데몬 방식, 리눅스 백그라운드 실행 (0) | 2022.11.02 |
---|---|
PHP는 서버를 이용하여 정시 작업을 실현한다 (0) | 2022.11.02 |
PHP 패키지 이상 클래스, 등록 오류 및 이상 처리 메커니즘 (0) | 2022.11.02 |
php redis 연결 끊기 (0) | 2022.11.02 |
php Warning, Notice 오류 캡처 (0) | 2022.11.02 |