我需要针对保存在文本文件中的网址列表检索“主机”。以下代码一次处理1个url。
$bits = parse_url("http://me:secret@example.com/cgi-bin/board?user=fred");
echo $bits['host'];
想要提取
example1.com
example2.com
example2.com
答案 0 :(得分:0)
类似的东西:
foreach(file('your_file') as $h){
$bits = parse_url($h);
echo $bits['host'];
}