:
Joyen
. , . , , ? file_get_contents , exec . -?
|
<?php
// create a new curl resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// CURLOPT_POST
// CURLOPT_POSTFIELDS
// grab URL and pass it to the browser
curl_exec($ch);
// close curl resource, and free up system resources
curl_close($ch);
?>
ignore_user_abort(1);
99.9%