Konvertuokite CURL komandas į PHP Guzzle kodą internete

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

CURL į PHP Guzzle internete

Šis įrankis padeda generuoti PHP Guzzle kodą pagal CURL komandą. Nukopijuokite ir įklijuokite CURL komandą ir sugeneruokite PHP Guzzle.

Ką galite padaryti naudodami CURL į PHP Guzzle konverterį internete?

  • CURL į PHP Guzzle yra labai unikalus įrankis konvertuoti CURL komandą į PHP Guzzle užklausą. Įvestis, kurią pateikia vartotojo CURL komanda, kad būtų sukurtas PHP Guzzle kodas.
  • Šis įrankis taupo jūsų laiką ir padeda lengvai generuoti PHP Guzzle kodą.
  • „CURL to PHP Guzzle“ gerai veikia „Windows“, „MAC“, „Linux“, „Chrome“, „Firefox“, „Edge“ ir „Safari“.

kas yra CURL?

CURL yra atvirojo kodo komandinės eilutės įrankis, kuris atsisiunčia failus iš žiniatinklio. Jis palaiko įvairius protokolus, įskaitant PHP Guzzle, PHP GuzzleS, FTP, SFTP, TFTP, Gopher ir kitus.

Kaip konvertuoti CURL į PHP Guzzle kodą? 

1 veiksmas: įklijuokite ir konvertuokite CURL užklausas į PHP Guzzle kodą

2 veiksmas: nukopijuokite PHP Guzzle kodą

Konvertuoti CURL į PHP Guzzle pavyzdį

CURL
curl example.com
PHP Guzzle
<?php
require 'vendor/autoload.php';

use GuzzleHttp\Client;

$client = new Client();

$response = $client->get('http://example.com');