在 PHP 中從子域中提取域名
在 PHP 中,從子域中獲取根域名是一項常見任務。考慮這樣一個場景,您遇到以下變數:
here.example.com example.com example.org here.example.org
您的目標是將這些值轉換為其根域名,例如 example.com 或 example.org。為此,需要一個精心設計的函數。
解決方案
以下程式碼片段示範了一個名為get_domain() 的函數,該函數可以有效地提取根網域:
<code class="php">function get_domain($url) { $pieces = parse_url($url); $domain = isset($pieces['host']) ? $pieces['host'] : ''; if (preg_match('/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i', $domain, $regs)) { return $regs['domain']; } return false; }</code>
此函數利用內建的parse_url() 函數來分解URL 並檢索主機組件。隨後,它使用正規表示式來驗證和提取根域名,確保其遵守常見的域名命名約定。
透過使用所需的URL 呼叫get_domain(),您可以輕鬆隔離根網域:
<code class="php">print get_domain("http://somedomain.co.uk"); // outputs 'somedomain.co.uk'</code>
如果URL 不符合可接受的域結構,函數會透過傳回false 來優雅地處理這些邊緣情況。
以上是如何在 PHP 中從子域中提取根域名?的詳細內容。更多資訊請關注PHP中文網其他相關文章!