PHPackages                             hi-noikiy/querylist-phantomjs - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. hi-noikiy/querylist-phantomjs

ActiveLibrary

hi-noikiy/querylist-phantomjs
=============================

QueryList Plugin: Use PhantomJS to crawl Javascript dynamically rendered pages.(headless WebKit ) 使用PhantomJS采集JavaScript动态渲染的页面

v1.0.0(3y ago)09MITPHPPHP &gt;=7.4.0

Since Sep 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/hi-noikiy/QueryList-PhantomJS)[ Packagist](https://packagist.org/packages/hi-noikiy/querylist-phantomjs)[ RSS](/packages/hi-noikiy-querylist-phantomjs/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

QueryList-PhantomJS
===================

[](#querylist-phantomjs)

QueryList Plugin: Use PhantomJS to crawl Javascript dynamically rendered pages.(headless WebKit )

QueryList插件: 使用PhantomJS采集JavaScript动态渲染的页面。

> PhantomJS: [http://phantomjs.org](http://phantomjs.org/)QueryList:

Installation for QueryList4
---------------------------

[](#installation-for-querylist4)

```
composer require jaeger/querylist-phantomjs

```

API
---

[](#api)

- **browser($url,$debug = false,$commandOpt = \[\])**:Open url in browser ,return **QueryList**

Installation options
--------------------

[](#installation-options)

**QueryList::use(PhantomJs::class,$opt1,$opt2)**

- **$opt1**: PhantomJS bin path
- **$opt2**: `browser` function alias.

Usage
-----

[](#usage)

- Installation Plugin

```
use QL\QueryList;
use QL\Ext\PhantomJs;

$ql = QueryList::getInstance();
// Set PhantomJS bin path
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs');
//or Custom function name
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs','browser');
```

- Example-1

```
$html = $ql->browser('https://m.toutiao.com')->getHtml();
print_r($html);

$data = $ql->browser('https://m.toutiao.com')->find('p')->texts();
print_r($data->all());

// Command option see: http://phantomjs.org/api/command-line.html
$ql->browser('https://m.toutiao.com',true,[
	'--proxy' => '192.168.1.42:8080',
    '--proxy-type' => 'http'
])
```

- Example-2

```
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){
    $r->setMethod('GET');
    $r->setUrl('https://m.toutiao.com');
    $r->setTimeout(10000); // 10 seconds
    $r->setDelay(3); // 3 seconds
    return $r;
})->find('p')->texts();

print_r($data->all());
```

- Example-3

```
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){
    $r->setMethod('GET');
    $r->setUrl('https://m.toutiao.com');
    $r->setTimeout(10000); // 10 seconds
    $r->setDelay(3); // 3 seconds
    return $r;
},true,[
    '--cookies-file' => '/path/to/cookies.txt'
])->rules([
    'title' => ['p','text'],
    'link' => ['a','href']
])->query()->getData();

print_r($data->all());

```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1338d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5f2b5c4d28a3b12353ff4ec6abe6a964f634987ffa4298499014520c252107c3?d=identicon)[hi-noikiy](/maintainers/hi-noikiy)

---

Top Contributors

[![hi-noikiy](https://avatars.githubusercontent.com/u/32630320?v=4)](https://github.com/hi-noikiy "hi-noikiy (1 commits)")

### Embed Badge

![Health badge](/badges/hi-noikiy-querylist-phantomjs/health.svg)

```
[![Health](https://phpackages.com/badges/hi-noikiy-querylist-phantomjs/health.svg)](https://phpackages.com/packages/hi-noikiy-querylist-phantomjs)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
