PHPでURLからホストを取得する方法
parse_url()関数を使用する方法:$url = "http://example.com/path/to/page"; $host = parse_url($url, PHP_URL_HOST); echo $host; // 出力: example.com>>More
parse_url()関数を使用する方法:$url = "http://example.com/path/to/page"; $host = parse_url($url, PHP_URL_HOST); echo $host; // 出力: example.com>>More