/**
*콘텐츠 내 키워드에 링크 추가
*처음 등장하는 키워드만 처리합니다. 이미 링크가 있는 키워드는 다시 연결되지 않습니다.
*$content:string 원본 문자열
*$keyword:string 키워드
*$link:string, 링크
*/
공개 정적 함수 yang_keyword_link($content,$keyword,$link){
//이미지에서 키워드 제외
$content = preg_replace( '| ( ]*?)('.$keyword.')([^>]*?>)|U', '$1%&&&&&%$3', $content); regEx = '/(?!((<.*?)|(
$url=''.$keyword.'';
$content = preg_replace($regEx,$url,$content,1);
//사진 속 키워드 복원
$content=str_replace('%&&&&&%',$keyword,$content)
$content 반환
}