示例#1
0
文件: item.php 项目: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0 || strpos($url, 'magnet') === 0) {
         parent::setUrl($url);
     }
 }
示例#2
0
文件: feed.php 项目: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0) {
         parent::setUrl($url);
         $this->setUrlHash(md5($url));
     }
 }