Skip to content

Instantly share code, notes, and snippets.

@MrWhiteD
Created September 13, 2022 05:19
Show Gist options
  • Save MrWhiteD/4071c6edfc44b2016ef261dcb9a59a3b to your computer and use it in GitHub Desktop.
Save MrWhiteD/4071c6edfc44b2016ef261dcb9a59a3b to your computer and use it in GitHub Desktop.
[file_get_content при отключенном allow_url_fopen] #php #allow_url_fopen
<?
function file_get_contents_curl($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment