Wie extrahiere ich die Basisdomäne aus URLs mit unterschiedlichen Formaten in PHP?

Linda Hamilton
Freigeben: 2024-10-17 17:12:02
Original
682 Leute haben es durchsucht

How to Extract the Base Domain from URLs with Varying Formats in PHP?

How to Extract the Primary Domain Name from a Variety of URL Formats in PHP

Introduction:

When working with URLs, it is often necessary to extract the primary domain name, excluding any subdomains. This can be a challenging task due to the wide range of URL formats that exist.

Solution:

Fortunately, there is a relatively straightforward solution using a combination of PHP functions. By utilizing parse_url and some string manipulation techniques, we can effectively extract the primary domain name from any URL format.

Step 1: Parse the URL

Using parse_url, we can extract the host part of the URL, which includes both the primary domain and any subdomains.

<code class="php">$info = parse_url($url);
$host = $info['host'];</code>
Nach dem Login kopieren

Step 2: Separate the Host Name and TLD

We then split the host string into an array based on periods using the explode function. The second to last string in the array represents the hostname, while the last string represents the top-level domain (TLD).

<code class="php">$host_names = explode(".", $host);
$bottom_host_name = $host_names[count($host_names)-2] . "." . $host_names[count($host_names)-1];</code>
Nach dem Login kopieren

Step 3: Combine the Hostname and TLD

By concatenating the hostname and TLD strings, we obtain the primary domain name.

<code class="php">echo $bottom_host_name;</code>
Nach dem Login kopieren

Explanation:

  • parse_url effectively extracts the host portion of the URL, including subdomains.
  • explode breaks the host into an array based on periods, allowing isolation of hostname and TLD.
  • count determines the number of elements in the array to identify the second-to-last string (hostname) and last string (TLD).
  • Concatenation combines the hostname and TLD into the primary domain name.

Das obige ist der detaillierte Inhalt vonWie extrahiere ich die Basisdomäne aus URLs mit unterschiedlichen Formaten in PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!