Git Product home page Git Product logo

Comments (3)

zachborboa avatar zachborboa commented on May 18, 2024

Possible implementation.

Call one url with the multiple data sets (one to many):

$curl = new Curl();
$curl->get(array(
    'https://www.example.com/search',
), array(
    'q' => 'first search',
), array(
    'q' => 'search #2',
), array(
    'q' => '3rd search',
));

Call multiple urls all with the same data (many to one):

$curl = new Curl();
$curl->get(array(
    'https://duckduckgo.com/',
    'https://search.yahoo.com/search',
    'https://www.bing.com/search',
    'http://www.dogpile.com/search/web',
    'https://www.google.com/search',
    'https://www.wolframalpha.com/input/',
), array(
    'q' => 'first search',
));

Call multiple urls with the multiple data sets (many to many).

$curl = new Curl();
$curl->get(array(
    'https://duckduckgo.com/',
    'https://search.yahoo.com/search',
    'https://www.bing.com/search',
    'http://www.dogpile.com/search/web',
    'https://www.google.com/search',
    'https://www.wolframalpha.com/input/',
), array(
    'q' => 'first search',
), array(
    'q' => 'search #2',
), array(
    'q' => '3rd search',
));

Call a url with data (one to one):

$curl = new Curl();
$curl->get('https://www.example.com/search', array(
    'q' => 'keyword',
));

from php-curl-class.

zachborboa avatar zachborboa commented on May 18, 2024

Implementation with success, error, and complete callbacks.

$curl = new Curl();
$curl->success(function($instance) {
    echo 'call was successful.' . "\n";
    echo 'response was' . "\n";
    echo $instance->response . "\n";
});
$curl->error(function($instance) {
    echo 'call was unsuccessful.' . "\n";
    echo 'error code:' . $instance->error_code . "\n";
    echo 'error message:' . $instance->error_message . "\n";
});
$curl->complete(function($instance) {
    echo 'call completed' . "\n";
});
$curl->get(array(
    'https://www.example.com/search',
), array(
    'q' => 'first search',
), array(
    'q' => 'search #2',
), array(
    'q' => '3rd search',
));

from php-curl-class.

zachborboa avatar zachborboa commented on May 18, 2024

Calling get() in parallel is now supported. TODO: Implement post(), put(), patch(), and delete() in parallel #14.

from php-curl-class.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.