php 이미지 데이터 로그 수집
- 통돌이
- 2022. 7. 29.
php 코드
$file_path = "./";
$file_name = $_GET['file_name'];
$filesize =filesize("$file_path.$file_name");
if( !file_exists( $file_path ) ) { echo "경로가 잘못되었습니다."; }
else{
header("Content-Type: image/jpeg"); // 이 부분 jpg를 jpeg로 수정함
header("Content-length: {$filesize}");
header("Content-Disposition: inline; filename={$file_name}");
readfile($file_path.$file_name);
}
네이버 원
$(".btn_copyImg").click(function(e){
e.preventDefault();
var copyNo = $(this).attr("data-no");
var selectObj = document.getElementById("copyText"+copyNo);
selectRange(selectObj);
document.execCommand("Copy");
alert("복사 되었습니다.");
});
function selectRange(obj) {
if(window.getSelection){
var selected = window.getSelection();
selected.selectAllChildren(obj);
//console.log(selected.toString());
}else if(document.body.createTextRange) {
var range = document.body.createTextRange();
range.moveToElementText(obj);
range.select();
//alert(range.htmlText);
}
};
참고 링크
https://viewridge.co.kr/home/guide_counter.html
'통돌이' 카테고리의 다른 글
기타 .오류 발생 대처법 : php webdriver를 활용한 크롤링 (0) | 2023.02.22 |
---|---|
호스팅어 / 리눅스 서버 / 로그 / 용량 / 삭제 (0) | 2023.01.23 |
cordvoa ios 이미지 확장 (0) | 2022.07.19 |
cordova push2 상세 (0) | 2022.07.06 |
cordova push1 초기 (0) | 2022.07.06 |