我正在使用爆炸来破坏 FQDN 并将其存储在数组中。然而,在该数组上调用 pop 会返回一个空白或空字符串,我不知道为什么。
$domains = explode(".",str_replace("example.com","","test.example.com"));
print "Test: " . $domains[0] . "<br>";
$target = array_pop($domains);
print "Target: " . $target . "<br>";
运行上面的代码会导致:
Test: test
Target:
为什么 $target 不包含“test”?