php解析字符串里所有URL地址的方法

作者:不吃皮蛋 时间:2023-08-19 08:31:38 

本文实例讲述了php解析字符串里所有URL地址的方法。分享给大家供大家参考。具体如下:


<?php
// $html = the html on the page
// $current_url = the full url that the html came from
//(only needed for $repath)
// $repath = converts ../ and / and // urls to full valid urls
function pageLinks($html, $current_url = "", $repath = false){
 preg_match_all("/\<a.+?href=(\"|')(?!javascript:|#)(.+?)(\"|')/i", $html, $matches);
 $links = array();
 if(isset($matches[2])){
   $links = $matches[2];
 }
 if($repath && count($links) > 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 < $total; $i++){
         array_pop($split_path);
       }
       $url = implode("/", $split_path) . "/" . str_replace("../", "", $link);
     }elseif(preg_match("/^\/\//", $link)){
       $url = $base["scheme"] . ":" . $link;
     }elseif(preg_match("/^\/|^.\//", $link)){
       $url = $base["scheme"] . "://" . $base["host"] . $link;
     }elseif(preg_match("/^[a-zA-Z0-9]/", $link)){
       if(preg_match("/^http/", $link)){
         $url = $link;
       }else{
         $url    = $dir . "/" . $link;
       }
     }
     $links[$k] = $url;
   }
 }
 return $links;
}
header("content-type: text/plain");
$url = "https://www.aspxhome.com";
$html = file_get_contents($url);
// Gets links from the page:
print_r(pageLinks($html));
// Gets links from the page and formats them to a full valid url:
print_r(pageLinks($html, $url, true));

希望本文所述对大家的php程序设计有所帮助。

标签:php,字符串,URL
0
投稿

猜你喜欢

  • yolov5特征图可视化的使用步骤

    2022-07-22 01:25:40
  • PyQt4编程之让状态栏显示信息的方法

    2021-07-22 04:11:19
  • CSS框架/命名/规则 注意要点

    2008-06-03 13:07:00
  • php生成随机数/生成随机字符串的方法小结【5种方法】

    2023-09-05 20:23:21
  • python实现简单的井字棋小游戏

    2022-06-30 10:48:05
  • python 并发编程 非阻塞IO模型原理解析

    2022-03-11 06:55:54
  • IE 下 href 的 BUG

    2008-11-10 12:32:00
  • oracle数据库冷备份的方法

    2023-07-19 09:51:19
  • html+vue.js 实现漂亮分页功能可兼容IE

    2024-05-11 09:13:25
  • 深入理解Python中的元类(metaclass)

    2021-02-25 22:10:00
  • 使用python实现knn算法

    2022-01-26 09:33:45
  • 100%全屏布局设计

    2009-05-15 12:24:00
  • python脚本框架webpy模板赋值实现

    2022-07-06 10:46:54
  • pandas 选取行和列数据的方法详解

    2022-12-29 19:28:58
  • Python使用tkinter写一个本地密码管理器

    2022-09-19 13:05:53
  • Python 使用csv库处理CSV文件的方法

    2023-03-16 21:37:24
  • Python机器学习NLP自然语言处理基本操作家暴归类

    2023-03-18 22:44:14
  • min-height 的原始实现方式

    2008-06-29 15:04:00
  • MySQL数据库重命名的快速且安全方法(3种)

    2024-01-27 23:33:54
  • python 类的基础详解与应用

    2021-01-04 08:57:37
  • asp之家 网络编程 m.aspxhome.com