」工欲善其事,必先利其器。「—孔子《論語.錄靈公》
首頁 > 程式設計 > 如何在 PHP 中從 URL 中提取子網域?

如何在 PHP 中從 URL 中提取子網域?

發佈於2024-12-23
瀏覽:809

How Can I Extract a Subdomain from a URL in PHP?

在 PHP 中從 URL 檢索子網域

在 PHP 中從 URL 檢索子網域

識別 URL 中的子網域可能是各種 Web 應用程式中的常見任務。本文探討 PHP 從給定 URL 中提取子網域的功能。

提取子網域的函數

function getSubdomain($url) {
  // Split the URL into its components
  $parts = explode('.', $url);
  
  // Remove the top-level domain (e.g., "com", "net")
  array_shift($parts);
  
  // Return the first element, which is the subdomain
  return $parts[0];
}
PHP 不提供檢索子網域的內建函數。但是,使用 array_shift() 和explode() 函數有一個簡單的解決方法:

function getSubdomain($url) { // 將 URL 拆分為其各個組成部分 $parts = 爆炸('.', $url); // 刪除頂級網域(例如「com」、「net」) array_shift($parts); // 傳回第一個元素,即子網域 返回$零件[0]; }

用法範例

function getSubdomain($url) {
  // Split the URL into its components
  $parts = explode('.', $url);
  
  // Remove the top-level domain (e.g., "com", "net")
  array_shift($parts);
  
  // Return the first element, which is the subdomain
  return $parts[0];
}
要從URL(例如“en.example.com”)檢索子網域,您可以使用:

$子網域= getSubdomain('en.example.com'); // "en"

$subdomain = explode('.', 'en.example.com')[0]; // "en"

How Can I Extract a Subdomain from a URL in PHP?
$subdomain =explode('.', 'en.example .com')[0]; //“en”

最新教學 更多>

免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。

Copyright© 2022 湘ICP备2022001581号-3