mobmash.click/lib/request.php

15 lines
441 B
PHP
Raw Normal View History

2024-07-26 21:07:11 +00:00
<?php
require_once __DIR__ . "/../config.php";
const USER_AGENT = "MobMash Updater/" . VERSION . " (+https://github.com/overflowerror/mobmash.click; contact: " . CONTACT_EMAIL . ")";
2024-07-26 21:07:11 +00:00
function get(string $url): string {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_USERAGENT, USER_AGENT);
2024-07-26 21:07:11 +00:00
$response = curl_exec($curl);
curl_close($curl);
return $response;
}