Last active
February 7, 2022 10:32
-
-
Save MahefaAbel/07f8030dd96f12a43ee2d6f2b3abd699 to your computer and use it in GitHub Desktop.
postWithoutWait.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Performs an async get request (doesn't wait for response) | |
* Note: One limitation of this approach is it will not work if server does any URL rewriting | |
*/ | |
function async_get($url) | |
{ | |
$parts=parse_url($url); | |
$fp = fsockopen($parts['host'], | |
isset($parts['port'])?$parts['port']:80, | |
$errno, $errstr, 30); | |
$out = "GET ".$parts['path']." HTTP/1.1\r\n"; | |
$out.= "Host: ".$parts['host']."\r\n"; | |
$out.= "Connection: Close\r\n\r\n"; | |
fwrite($fp, $out); | |
fclose($fp); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// PHP library: curl-easy | |
$request = new cURL\Request('http://www.externalsite.com/script2.php?variable=45'); | |
$request->getOptions() | |
->set(CURLOPT_TIMEOUT, 5) | |
->set(CURLOPT_RETURNTRANSFER, true); | |
// add callback when the request will be completed | |
$request->addListener('complete', function (cURL\Event $event) { | |
$response = $event->response; | |
$content = $response->getContent(); | |
echo $content; | |
}); | |
while ($request->socketPerform()) { | |
// do anything else when the request is processed | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// PHP library: curl-easy | |
$request = new cURL\Request('http://yahoo.com/'); | |
$request->getOptions()->set(CURLOPT_RETURNTRANSFER, true); | |
// Specify function to be called when your request is complete | |
$request->addListener('complete', function (cURL\Event $event) { | |
$response = $event->response; | |
$httpCode = $response->getInfo(CURLINFO_HTTP_CODE); | |
$html = $response->getContent(); | |
echo "\nDone.\n"; | |
}); | |
// Loop below will run as long as request is processed | |
$timeStart = microtime(true); | |
while ($request->socketPerform()) { | |
printf("Running time: %dms \r", (microtime(true) - $timeStart)*1000); | |
// Here you can do anything else, while your request is in progress | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$client = new GuzzleHttp\Client(); | |
$promise = $client->requestAsync('GET', 'http://httpbin.org/get'); | |
$promise->then( | |
function (ResponseInterface $res) { | |
echo $res->getStatusCode() . "\n"; | |
}, | |
function (RequestException $e) { | |
echo $e->getMessage() . "\n"; | |
echo $e->getRequest()->getMethod(); | |
} | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function postWithoutWait($url, $params) | |
{ | |
foreach ($params as $key => &$val) { | |
if (is_array($val)) $val = implode(',', $val); | |
$post_params[] = $key.'='.urlencode($val); | |
} | |
$post_string = implode('&', $post_params); | |
$parts=parse_url($url); | |
$fp = fsockopen($parts['host'], | |
isset($parts['port'])?$parts['port']:80, | |
$errno, $errstr, 30); | |
$out = "POST ".$parts['path']." HTTP/1.1\r\n"; | |
$out.= "Host: ".$parts['host']."\r\n"; | |
$out.= "Content-Type: application/x-www-form-urlencoded\r\n"; | |
$out.= "Content-Length: ".strlen($post_string)."\r\n"; | |
$out.= "Connection: Close\r\n\r\n"; | |
if (isset($post_string)) $out.= $post_string; | |
fwrite($fp, $out); | |
fclose($fp); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// $type must equal 'GET' or 'POST' | |
function curl_request_async($url, $params, $type='POST') | |
{ | |
foreach ($params as $key => &$val) { | |
if (is_array($val)) $val = implode(',', $val); | |
$post_params[] = $key.'='.urlencode($val); | |
} | |
$post_string = implode('&', $post_params); | |
$parts=parse_url($url); | |
$fp = fsockopen($parts['host'], | |
isset($parts['port'])?$parts['port']:80, | |
$errno, $errstr, 30); | |
// Data goes in the path for a GET request | |
if('GET' == $type) $parts['path'] .= '?'.$post_string; | |
$out = "$type ".$parts['path']." HTTP/1.1\r\n"; | |
$out.= "Host: ".$parts['host']."\r\n"; | |
$out.= "Content-Type: application/x-www-form-urlencoded\r\n"; | |
$out.= "Content-Length: ".strlen($post_string)."\r\n"; | |
$out.= "Connection: Close\r\n\r\n"; | |
// Data goes in the request body for a POST request | |
if ('POST' == $type && isset($post_string)) $out.= $post_string; | |
fwrite($fp, $out); | |
fclose($fp); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// composer require spatie | |
// composer require spatie/async | |
use Spatie\Async\Pool; | |
$mypool = Pool::create(); | |
$mypool[] = async() { | |
// Eto ny fandehany | |
})->then() { | |
// Ny fandehany apres rah ilaina | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment