PHP Classes

File: includes/src/vendor/rmccue/requests/examples/cookie_jar.php

Recommend this page to a friend!
  Classes of Subin Siby   Lobby   includes/src/vendor/rmccue/requests/examples/cookie_jar.php   Download  
File: includes/src/vendor/rmccue/requests/examples/cookie_jar.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Lobby
Web OS to install and run Web applications
Author: By
Last change:
Date: 7 years ago
Size: 514 bytes
 

Contents

Class file image Download
<?php

// First, include Requests
include('../library/Requests.php');

// Next, make sure Requests can load internal classes
Requests::register_autoloader();

// Say you need to fake a login cookie
$c = new Requests_Cookie_Jar(['login_uid' => 'something']);

// Now let's make a request!
$request = Requests::get(
   
'http://httpbin.org/cookies', // Url
   
[], // No need to set the headers the Jar does this for us
   
['cookies' => $c] // Pass in the Jar as an option
);

// Check what we received
var_dump($request);