hstanleycrow / easyphpcurlrequest
Free PHP Class to make Http Request using cURL
1.0.0
2023-04-30 01:02 UTC
Requires
- php: ^8.0
README
Easy PHP cURL Request
Free PHP Class to make Http Request using cURL
How To Use • Download • License
How To Use
# Clone this repository $ git clone https://github.com/hstanleycrow/EasyPHPcURLRequest/ # install libraries $ composer update # or install using composer $ composer require hstanleycrow/easyphpcurlrequest
Examples
$url = "https://reqres.in/api/users"; $postData = array( 'name' => 'John Doe', 'job' => 'Web Developer' ); $request = new CurlRequest($url); $request->setPost(true); $request->setPostData(json_encode($postData)); $request->setHttpHeader([ 'Content-Type: application/json' ]); $request->execute(); if ($request->isSuccessful()) : $response = $request->getResult(); $response_data = json_decode($response, true); var_dump($response_data); else : echo "Error"; endif; #example 2: get request $url = 'https://jsonplaceholder.typicode.com/posts'; $request = new CurlRequest($url); $request->setPost(false); $request->setHttpHeader([ 'Content-Type: application/json' ]); $request->execute(); if ($request->isSuccessful()) : $response = $request->getResult(); $response_data = json_decode($response, true); var_dump($response_data); else : echo "Error"; endif;
Download
You can download the latest version here.
PHP Versions
I have tested this class only in this PHP versions. So, if you have an older version and do not work, let me know.
Support
License
MIT
www.hablemosdeseo.net · GitHub @hstanleycrow · Twitter @harold_crow