예제 #1
0
파일: Posts.php 프로젝트: ph7pal/naodong
 public static function textUrl($link)
 {
     if (self::checkImg($link)) {
         return $link;
     }
     if (self::checkUrlDomain($link)) {
         return $link;
     }
     $info = Urls::FAA($link);
     if ($info) {
         return "[texturl={$info['code']}]{$info['code']}[/texturl]";
     } else {
         return $link;
     }
 }