Binternet/misc/tools.php

16 lines
325 B
PHP
Raw Permalink Normal View History

<?php
2023-09-02 22:29:37 +00:00
function get_root_domain($url) {
return parse_url($url, PHP_URL_HOST);
}
function request($url)
{
2023-02-17 12:20:14 +00:00
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
2023-02-17 12:20:14 +00:00
return $response;
}
?>