파일 첨부 불러올 시 경로 문자 문제 정보
파일 첨부 불러올 시 경로 문자 문제
본문
파일 첨부 후 view에서 넘어오는 변수를 표시한 내용입니다.
array(13) {
["href"]=>
string(54) "./download.php?bo_table=sir_sp08&wr_id=500&no=2&page=0"
["download"]=>
string(0) ""
["path"]=>
string(21) "../data/file/sir_sp08"
["size"]=>
string(6) "152.8K"
["datetime"]=>
string(19) "2012-12-01 23:18:16"
["source"]=>
string(20) "tux-instructions.jpg"
["bf_content"]=>
string(0) ""
["content"]=>
string(0) ""
["view"]=>
string(174) "<img src='../data/file/sir_sp08/1212%2F01%2F5b5a07a0c47e65c369f928209e812672.jpg' name='target_resize_image[]' onclick='image_window(this);' style='cursor:pointer;' title=''>"
["file"]=>
string(44) "1212/01/5b5a07a0c47e65c369f928209e812672.jpg"
["image_width"]=>
string(3) "759"
["image_height"]=>
string(3) "996"
["image_type"]=>
string(1) "2"
}
여기에서
1212/01/5b5a07a0c47e65c369f928209e812672.jpg
위 경로가
1212%2F01%2F5b5a07a0c47e65c369f928209e812672.jpg
이것으로 스케이프되어서 이미지 출력이 제대로 되지 않습니다.
이거 어디에서 수정해야되나요.
array(13) {
["href"]=>
string(54) "./download.php?bo_table=sir_sp08&wr_id=500&no=2&page=0"
["download"]=>
string(0) ""
["path"]=>
string(21) "../data/file/sir_sp08"
["size"]=>
string(6) "152.8K"
["datetime"]=>
string(19) "2012-12-01 23:18:16"
["source"]=>
string(20) "tux-instructions.jpg"
["bf_content"]=>
string(0) ""
["content"]=>
string(0) ""
["view"]=>
string(174) "<img src='../data/file/sir_sp08/1212%2F01%2F5b5a07a0c47e65c369f928209e812672.jpg' name='target_resize_image[]' onclick='image_window(this);' style='cursor:pointer;' title=''>"
["file"]=>
string(44) "1212/01/5b5a07a0c47e65c369f928209e812672.jpg"
["image_width"]=>
string(3) "759"
["image_height"]=>
string(3) "996"
["image_type"]=>
string(1) "2"
}
여기에서
1212/01/5b5a07a0c47e65c369f928209e812672.jpg
위 경로가
1212%2F01%2F5b5a07a0c47e65c369f928209e812672.jpg
이것으로 스케이프되어서 이미지 출력이 제대로 되지 않습니다.
이거 어디에서 수정해야되나요.
댓글 전체
출력하실때 urldecode 해보세요
감사합니다.