Search Onejav without website

    public function search($keyword)
    {
        if (!$crawler = $this->getCrawler('GET', 'https://onejav.com/search/' . urlencode($keyword))) {
            return false;
        }

        return $crawler->filter('.container .card.mb-3 .column.is-5')->each(
            function ($el) {
                $title   = $el->filter('h5 a')->text();
                $size    = $el->filter('h5 span')->text();
                $size    = str_replace('GB', '', $size);
                $torrent = $el->filter('.control.is-expanded a')->attr('href');

                return [trim($title), (float)$size, trim($torrent)];
            }
        );
    }

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Up ↑

%d bloggers like this: