함수명


array get_file($bo_table, $wr_id)

게시글에 첨부된 파일을 얻는다. (배열로 반환)


경로

lib/common.lib.php


인수

string $bo_table

게시판 테이블명


string $wr_id

게시글 고유번호


예제

// 예제
$files = get_file('notice', 1);

var_dump($files);

array(3) {
  ["count"]=>
  int(2)
  [0]=>
  array(13) {
    ["href"]=>
    string(82) "http://sample.withstep.co.kr/bbs/download.php?bo_table=notice&wr_id=1&no=0"
    ["download"]=>
    string(1) "0"
    ["path"]=>
    string(45) "http://sample.withstep.co.kr/data/file/notice"
    ["size"]=>
    string(4) "1.7M"
    ["datetime"]=>
    string(19) "2018-07-18 23:49:31"
    ["source"]=>
    string(12) "IMG_0639.jpg"
    ["bf_content"]=>
    string(0) ""
    ["content"]=>
    string(0) ""
    ["view"]=>
    string(331) ""
    ["file"]=>
    string(64) "3673073230_9nX8kCtg_593abcd5fd82dd8c576d23e5cc83ca0ab8d46a7a.jpg"
    ["image_width"]=>
    string(4) "2448"
    ["image_height"]=>
    string(4) "3264"
    ["image_type"]=>
    string(1) "2"
  }
  [1]=>
  array(13) {
    ["href"]=>
    string(82) "http://sample.withstep.co.kr/bbs/download.php?bo_table=notice&wr_id=1&no=1"
    ["download"]=>
    string(1) "0"
    ["path"]=>
    string(45) "http://sample.withstep.co.kr/data/file/notice"
    ["size"]=>
    string(4) "3.0M"
    ["datetime"]=>
    string(19) "2018-07-18 23:49:31"
    ["source"]=>
    string(12) "IMG_0640.jpg"
    ["bf_content"]=>
    string(0) ""
    ["content"]=>
    string(0) ""
    ["view"]=>
    string(331) ""
    ["file"]=>
    string(64) "3673073230_SxIBeMJW_593abcd5fd82dd8c576d23e5cc83ca0ab8d46a7a.jpg"
    ["image_width"]=>
    string(4) "2448"
    ["image_height"]=>
    string(4) "3264"
    ["image_type"]=>
    string(1) "2"
  }
}



'개발자 인생 > 그누보드5' 카테고리의 다른 글

get_list  (0) 2018.07.20
get_dirsize  (0) 2018.07.19
get_filesize  (0) 2018.07.18
set_http  (0) 2018.07.17
url_auto_link  (0) 2018.07.17