在 PHP 中从 URL 检索子域
识别 URL 中的子域可能是各种 Web 应用程序中的常见任务。本文探讨 PHP 从给定 URL 中提取子域名的功能。
提取子域名的函数
PHP 不提供用于检索子域名的内置函数。但是,使用 array_shift() 和explode() 函数有一个简单的解决方法:
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”,您会使用:
$subdomain = getSubdomain('en.example.com'); // "en"
或者,使用 PHP 5.4 或更高版本,您可以简化该过程:
$subdomain = explode('.', 'en.example.com')[0]; // "en"
以上是如何在 PHP 中从 URL 中提取子域?的详细内容。更多信息请关注PHP中文网其他相关文章!