Download the PHP package clox/hicurl without Composer

On this page you can find all versions of the php package clox/hicurl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package hicurl

Hicurl

A library that aims in making cURL-requests a piece of cake while also allowing for saving the fetched pages along with headers and postdata to files for later viewing. It essentially is a PHP wrapper class for cURL, and a javascript "class" that displays the saved data nicely.

Getting Started

Simple Usage

To use Hicurl on the PHP side you simply need to include hicurl.php inside the src folder:

``

Then you can do something like the following to begin loading some pages:

`` It is also easy sending post-data. If an object is passed to the second parameter the request will be sent as POST with that data:

``

Settings

There's a bunch of settings that can be used. These can be passed or like this: Any calls made with that instance will now save cookies in and send cookies from that file. Settings can be changed after instance-creation: Lastly, they may also be passed to the load call in which case they will be merged with the settings of the instance during that call only: ``

Static usage

Most methods also have static counterparts which can be convenient if only a single call is to be made: It's equivalent without hicurl would be something along the lines of: "Whew!"

Saving history

Saving data is easy too. For starters we need one additional setting: ``

Sending history

There's some easy job to be done for sending the data to the client. Here's one way of doing it:

getHistory.php `` That's what we need for sending the data. Though simply loading this page in the browser wont help much, so we will need to do the following...

Viewing history

To be able to view the data in a meaningful way we will use the javascript hicurl-class. We need to load some files to use it and then write a tiny bit more code. `


All versions of hicurl with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package clox/hicurl contains the following files

Loading the files please wait ....