Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
admin
/
extend
/
vendor
/
qiniu
/
php-sdk
/
src
/
Qiniu
/
Http
:
Request.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Qiniu\Http; final class Request { public $url; public $headers; public $body; public $method; public function __construct($method, $url, array $headers = array(), $body = null) { $this->method = strtoupper($method); $this->url = $url; $this->headers = $headers; $this->body = $body; } }