liesauer / ql-plugin-simplehttpclient
QueryList Plugin - SimpleHttpClient
Package info
github.com/liesauer/QLPlugin-SimpleHttpClient
pkg:composer/liesauer/ql-plugin-simplehttpclient
v4.0.1
2017-10-03 04:34 UTC
Requires
- jaeger/querylist: ^4.0.0
- liesauer/gincs: *
This package is auto-updated.
Last update: 2026-03-05 22:02:43 UTC
README
SimpleHttpClient
Installation
composer require liesauer/ql-plugin-simplehttpclient
Bind
- array
quickGet($url, $header = null, $cookie = '', $data = '', $options = null) - array
quickPost($url, $header = null, $cookie = '', $data = '', $options = null)
Usage
use liesauer\QLPlugin\SimpleHttpClient; use QL\QueryList; require_once __DIR__ . '/vendor/autoload.php'; $ql = QueryList::getInstance(); $ql->use(SimpleHttpClient::class); $response = $ql->quickGet('http://www.domain.com/'); var_dump($response);