Si encuentras alguna parte que no comprendes puedes comentarlo y te responderemos lo más rápido posible.
Ejemplo 1: publicación de php curl
// set post fields
$post=['username'=>'user1',
'password'=>'passuser1',
'gender'=>1,
];$ch= curl_init('http://www.example.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
// execute!$response= curl_exec($ch);
// close the connection, release resources used
curl_close($ch);
// do anything you want with your response
var_dump($response);
Ejemplo 2: ejemplo php de curlopt_postfields
<?php
$postRequest= array('firstFieldData'=>'foo',
'secondFieldData'=>'bar');$cURLConnection= curl_init('http://hostname.tld/api');
curl_setopt($cURLConnection, CURLOPT_POSTFIELDS, $postRequest);
curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);$apiResponse= curl_exec($cURLConnection);
curl_close($cURLConnection);
// $apiResponse - available data from the API request
$jsonArrayResponse - json_decode($apiResponse);
Ejemplo 3: CURL POST – PHP
$post_data_arr=['f_name'=>'First',
'l_name'=>'Last',
];$url='http://example.com';$curl= curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data_arr);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);$response= curl_exec($curl);
curl_close($curl);
print_r($response);
Ejemplo 4: ejemplo php de curlopt_postfields
<?php
$cURLConnection= curl_init();
curl_setopt($cURLConnection, CURLOPT_URL, 'https://hostname.tld/phone-list');
curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);$phoneList= curl_exec($cURLConnection);
curl_close($cURLConnection);$jsonArrayResponse - json_decode($phoneList);
Te invitamos a añadir valor a nuestra información asistiendo con tu experiencia en los informes.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)