Curl
This library provides an object-oriented and dependency free wrapper of the PHP cURL extension.
Install / Use
/learn @php-mod/CurlREADME
PHP Curl Class
This library provides an object-oriented and dependency free wrapper of the PHP cURL extension.
If you have questions or problems with installation or usage create an Issue.
Installation
In order to install this library via composer run the following command in the console:
composer require curl/curl
Usage examples
A few example for using CURL with get:
$curl = (new Curl\Curl())->get('http://www.example.com/');
if ($curl->isSuccess()) {
// do something with response
var_dump($curl->response);
}
// ensure to close the curl connection
$curl->close();
Or with params, values will be encoded with PHP_QUERY_RFC1738:
$curl = (new Curl\Curl())->get('http://www.example.com/search', [
'q' => 'keyword',
]);
An example using post
$curl = new Curl\Curl();
$curl->post('http://www.example.com/login/', [
'username' => 'myusername',
'password' => 'mypassword',
]);
An exampling using basic authentication, remove default user agent and working with error handling
$curl = new Curl\Curl();
$curl->setBasicAuthentication('username', 'password');
$curl->setUserAgent('');
$curl->setHeader('X-Requested-With', 'XMLHttpRequest');
$curl->setCookie('key', 'value');
$curl->get('http://www.example.com/');
if ($curl->error) {
echo $curl->error_code;
} else {
echo $curl->response;
}
var_dump($curl->request_headers);
var_dump($curl->response_headers);
Example access to curl object:
curl_set_opt($curl->curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1');
curl_close($curl->curl);
Example of downloading a file or any other content
$curl = new Curl\Curl();
// open the file where the request response should be written
$file_handle = fopen($target_file, 'w+');
// pass it to the curl resource
$curl->setOpt(CURLOPT_FILE, $file_handle);
// do any type of request
$curl->get('https://github.com');
// disable writing to file
$curl->setOpt(CURLOPT_FILE, null);
// close the file for writing
fclose($file_handle);
Testing
In order to test the library:
- Create a fork
- Clone the fork to your machine
- Install the depencies
composer install - Build and start the docker image (in
tests/server)docker build . -t curlserverstartdocker run -p 1234:80 curlserver - Run the unit tests
./vendor/bin/phpunit tests
Related Skills
node-connect
347.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
107.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.0kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
