mirror of
https://github.com/hnhx/gnutube.git
synced 2025-04-29 14:59:51 -04:00
13 lines
No EOL
223 B
PHP
13 lines
No EOL
223 B
PHP
<?php
|
|
function request($url)
|
|
{
|
|
global $config;
|
|
|
|
$ch = curl_init($url);
|
|
curl_setopt_array($ch, $config->curl_settings);
|
|
|
|
$response = curl_exec($ch);
|
|
|
|
return $response;
|
|
}
|
|
?>
|