opensourcediva / zzcurl
Allows you to easily send post data.
Installs: 49
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/opensourcediva/zzcurl
This package is not auto-updated.
Last update: 2025-10-07 07:51:27 UTC
README
Allows you to easily send post data.
Example
<?php require 'vendor/autoload.php'; use Utility\Data; use Utility\Post; try { $data = new Data([ 'test_field' => 'test data', 'test_field_2' => 'test data 2' ]); $post = new Post('http://www.webomg.com'); $post->setData($data); $response = $post->send(); // Returns true if successful } catch(Exception $exception) { echo $exception->getMessage(); }