Pop\Feed\Format\AbstractFormat::url PHP 메소드

url() 공개 메소드

Method to get the URL
public url ( ) : string
리턴 string
    public function url()
    {
        return $this->url;
    }

Usage Example

예제 #1
0
 /**
  * Method to determine if the feed type is a playlist
  *
  * @return boolean
  */
 public function isPlaylist()
 {
     $search = $this->isVimeo() ? 'album' : 'playlist';
     return strpos($this->adapter->url(), $search) !== false;
 }