3

根据以下代码 if $host_nameis something like example.comPHP 返回一个 notice:Message: Undefined index: host但在完整的 URL 上,如http://example.comPHP 返回example.com。我尝试了带有 FALSE 和 NULL 的 if 语句,但没有奏效。

$host_name = $this->input->post('host_name');
$parse = parse_url($host_name);
$parse_url = $parse['host'];

如何修改脚本以接受 example.com 并返回它?

4

4 回答 4

5
  1. 升级你的 php。 5.4.7 Fixed host recognition when scheme is ommitted and a leading component separator is present.

  2. 手动添加方案:if(mb_substr($host_name, 0, 4) !== 'http') $host_name = 'http://' . $host_name;

于 2012-12-23T11:10:07.730 回答
5

您可以使用检查该方案是否存在filter_var,如果不存在则添加一个

$host_name = 'example.com';
if (!filter_var($host_name, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED)) {
    $host_name = 'http://' . $host_name;
}
$parse = parse_url($host_name);

var_dump($parse);

array(2) {
  ["scheme"]=>
  string(4) "http"
  ["host"]=>
  string(11) "example.com"
}
于 2012-12-23T11:21:22.530 回答
4

在这种情况下只需添加一个默认方案:

if (strpos($host_name, '://') === false) {
    $host_name = 'http://' . $host_name;
}
$parse = parse_url($host_name);
于 2012-12-23T11:10:14.363 回答
0

这是一个示例函数,它返回真实主机,而不管方案如何..

function gettheRealHost($Address) { 
   $parseUrl = parse_url(trim($Address)); 
   return trim($parseUrl[host] ? $parseUrl[host] : array_shift(explode('/', $parseUrl[path], 2))); 
} 

gettheRealHost("example.com"); // Gives example.com 
gettheRealHost("http://example.com"); // Gives example.com 
gettheRealHost("www.example.com"); // Gives www.example.com 
gettheRealHost("http://example.com/xyz"); // Gives example.com 
于 2015-09-17T09:54:12.267 回答