Habari\Comments::by_url PHP 메소드

by_url() 공개 정적인 메소드

select all comments from an author's URL
public static by_url ( string $url = '' ) : array
$url string a URL
리턴 array array an array of Comment objects with the same URL
    public static function by_url($url = '')
    {
        if (!$url) {
            return false;
        }
        return self::get(array("url" => $url));
    }