bohan / aria2
v1.1.0
2022-01-16 06:22 UTC
Requires
- php: >=7.2.5
- symfony/http-client: ^4.4 || ^5.0
This package is auto-updated.
Last update: 2022-11-08 07:55:08 UTC
README
composer require bohan/aria2
此库使用了 symfony/http-client。
如果发生错误,将抛出异常。
<?php declare(strict_types=1); use Bohan\Aria2\Aria2; $aria2 = new Aria2('https://:6800/jsonrpc', 'rpc-secret'); $aria2->request('addUri', [ ['https://example.com/'], ['out' => 'index.html'] ]); // or use the "__call" magic method $aria2->addUri( ['https://example.com/'], ['out' => 'index.html'] );