分析url,parse_url

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan


----------------------------------------------------parse_url
程序:
<?php
/**
* @name test.php
* @date Sun Jan 20 01:59:31 CST 2008
* @copyright 马永占(MyZ)
* @author 马永占(MyZ)
* @link http://blog.csdn.net/mayongzhan/
*/
header("Content-type: text/html;charset=utf-8");
$url="http://127.0.0.1:80/test?a=1#111";
$url_info=parse_url($url);
print_r($url_info);
?>
结果:
Array ( [scheme] => http [host] => 127.0.0.1 [port] => 80 [path] => /test [query] => a=1 [fragment] => 111 )
注意:如果没有http://的话会只有[path],所以要是要用socket或者file的话,还是写全了比较好.方便解析和使用.

你可能感兴趣的:(.net,PHP,socket,Scheme,出版)