자유 pdf test
페이지 정보
본문
tedftsets
첨부파일
-
test.pdf pdf test 20221202 (679.0K)
9회 다운로드 | DATE : 2022-12-02 10:20:15
댓글목록
22님의 댓글
22이름으로 검색 작성일
<!--
Copyright 2012 Mozilla Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Adobe CMap resources are covered by their own copyright but the same license:
Copyright 1990-2015 Adobe Systems Incorporated.
See https://github.com/adobe-type-tools/cmap-resources
-->
2님의 댓글
2이름으로 검색 작성일
게시판 뷰어
<?php
for ($i=0; $i<count($view['file']); $i++) {
$allowed = array('pdf');
$filename = $view['file'][$i]['source'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if (in_array(strtolower($ext), $allowed))
echo '<object width="980" height="800" data="'.G5_URL.'/data/file/'.$bo_table.'/'.$view['file'][$i]['file'].'"></object>';
}
?>