xml 및 rss에서 이미지 주소 및 첨부파일 주소 가져오기
본문
여기에서 작업하고 있어요
http://www.bizion.com/api.php?bo_table=spacejump&format
의당도신님의 xml + json 출력 api 플러그인 파일을 다운로드 하였습니다.
개발자가 아니여서 추가로 자료를 뽑아오고 싶은데 싶지가 않네요~~
여기서 제가 추가하고 싶은 부분이 있습니다.
질문1 : 해당 게시글의 대표이미지 주소 가져오기
질문2 : 해당 게시글의 첨부파일 1번 주소 가져오기
질문3 : 특수 문자 삭제하기
질문 3번의 소스를 보면
//내용 글자수 제한
$str_len=300 ;
// 특수문자 변환
function specialchars_replace($str, $len=0) {
if ($len) {
$str = substr($str, 0, $len);
}
$str = str_replace(array("&", "<", ">"), array("&", "<", ">"), $str);
$str = preg_replace("/&/", "&", $str);
$str = preg_replace("/</", "<", $str);
$str = preg_replace("/>/", ">", $str);
return $str;
}
<description> <![CDATA[<?=cut_str(strip_tags(stripslashes($row['wr_content'])),$str_len)?>]]></description>
고수님들의 제보를 받습니다.
많이 도와주세요~~
답변을 작성하시기 전에 로그인 해주세요.