PHP Classes

File: example/make_a_patch_request

Recommend this page to a friend!
  Classes of nvb   PHP CURL Component   example/make_a_patch_request   Download  
File: example/make_a_patch_request
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP CURL Component
Compose and execute HTTP requests with Curl
Author: By
Last change:
Date: 8 years ago
Size: 896 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-12-10
 */

require_once __DIR__ . '/../vendor/autoload.php';

use
Net\Bazzline\Component\Curl\Builder\BuilderFactory;
use
Net\Bazzline\Component\Curl\Dispatcher\LoggingDispatcher;

$factory = new BuilderFactory();
$factory->overwriteDispatcher(new LoggingDispatcher());
$builder = $factory->create();
$url = ($argc > 1) ? $argv[1] : 'https://httpbin.org/get';

$response = $builder->onTheUrl($url)
    ->
usePatch()
    ->
andFetchTheResponse();

echo
'content: ' . $response->content() . PHP_EOL;
echo
'content type: ' . $response->contentType() . PHP_EOL;
echo
'head lines: ' . var_export($response->headerLines(), true) . PHP_EOL;
echo
'error:' . $response->error() . PHP_EOL;
echo
'error code:' . $response->errorCode() . PHP_EOL;
echo
'status code: ' . $response->statusCode() . PHP_EOL;