mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
196 B
PHP
10 lines
196 B
PHP
<?php
|
|||
function useAfterClose($url) {
|
|||
$ch = curl_init($url);
|
|||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|||
curl_close($ch);
|
|||
$response = curl_exec($ch);
|
|||
return $response;
|
|||
}
|
|||
?>
|