php解析字符串里所有URL地址的方法_php技巧
程序员文章站
2022-03-11 23:05:08
...
本文实例讲述了php解析字符串里所有URL地址的方法。分享给大家供大家参考。具体如下:
0 && strlen($current_url) > 0){ $pathi = pathinfo($current_url); $dir = $pathi["dirname"]; $base = parse_url($current_url); $split_path = explode("/", $dir); $url = ""; foreach($links as $k => $link){ if(preg_match("/^\.\./", $link)){ $total = substr_count($link, "../"); for($i = 0; $i
希望本文所述对大家的php程序设计有所帮助。