开发者

Parsing text and return hostname before period with PHP

$hostname = "abc.domain.com"

I just want "abc" and nothing after开发者_运维知识库 it.


With substr and strpos:

$host = substr($hostname, 0, strpos($hostname, '.'));

or maybe better, strstr:

$host = strstr($hostname, '.', true);

There are a lot of functions available to process strings.


Use explode():

$parts = explode('.', $hostname);
// $parts[0]


Will it always have a subdomain?

If so, you can just do

$parts = explode('.', $hostname);
$subdomain = $parts[0];

If there might not be a subdomain

$parts = explode('.', $hostname);
$subdomain = count($parts) == 3 ? $parts[0] : NULL;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜