mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
11 lines
369 B
PHP
11 lines
369 B
PHP
![]() |
<?php
|
||
|
|
||
|
function get(string $url): string {
|
||
|
$curl = curl_init($url);
|
||
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||
|
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36');
|
||
|
$response = curl_exec($curl);
|
||
|
curl_close($curl);
|
||
|
return $response;
|
||
|
}
|