在 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"
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3