求个简单的PHP正则匹配。
<ul class="main_con"> <li> <span class="kind"><a href="http://book.zongheng.com/store/c21/c1210/b9/u0/p1/v9/s9/t0/ALL.html" title="动漫同人" target="_blank">[动漫同人]</a></span> <span class="chap"> <a href="http://book.zongheng.com/book/299149.html" class="fs14" title="宠物小精灵黑白2" target="_blank">宠物小精灵黑...</a> <a href="http://book.zongheng.com/chapter/299149/5188596.html" title="正文 第二十二章 暗涌!" target="_blank">正文 第二十二...</a> </span> <span class="number"> 2826/18/0 </span> <span class="author"><a href="http://home.zongheng.com/show/userInfo/10996625.html" title="一鼎" target="_blank">一鼎</a></span> <span class="time">13-08-29 14:55</span> </li> <li> <span class="kind"><a href="http://book.zongheng.com/store/c31/c3106/b9/u0/p1/v9/s9/t0/ALL.html" title="青春校园" target="_blank">[青春校园]</a></span> <span class="chap"> <a href="http://www.mmzh.com/book/280776.html" class="fs14" title="那年雪花在飘,谁在忧伤?" target="_blank">那年雪花在飘...</a> <a href="http://book.zongheng.com/chapter/280776/5188594.html" title="正文 真诚璃茉与夜落雪的暗斗" target="_blank">正文 真诚璃茉...</a> </span> <span class="number"> 202/5/0 </span> <span class="author"><a href="http://home.zongheng.com/show/userInfo/9854181.html" title="蕾娜莎" target="_blank">蕾娜莎</a></span> <span class="time">13-08-29 14:55</span> </li>
以上代码中我只想要(.*)和这个格式一样的URL。这正则怎么写。
以下是我写的,
$html=file_get_contents($setting['book_url']);
$k='/
- ';
-
[动漫同人]
宠物小精灵黑...
正文 第二十二...
2826/18/0
一鼎
13-08-29 14:55
-
[青春校园]
那年雪花在飘...
正文 真诚璃茉...
202/5/0
蕾娜莎
13-08-29 14:55
$k.='(.*)(.*)<\/a>(.*)';
$k.='<\/ul>/isU';
preg_match_all($k,$html,$rs);
没有匹配到地址
回复讨论(解决方案)
preg_match_all('#(.*?)<\/a>#i',$html,$rs);
那直接写就是了
#(.*)#
<ul class="main_con"> <li> <span class="kind"><a href="http://book.zongheng.com/store/c21/c1210/b9/u0/p1/v9/s9/t0/ALL.html" title="动漫同人" target="_blank">[动漫同人]</a></span> <span class="chap"> <a href="http://book.zongheng.com/book/299149.html" class="fs14" title="宠物小精灵黑白2" target="_blank">宠物小精灵黑...</a> <a href="http://book.zongheng.com/chapter/299149/5188596.html" title="正文 第二十二章 暗涌!" target="_blank">正文 第二十二...</a> </span> <span class="number"> 2826/18/0 </span> <span class="author"><a href="http://home.zongheng.com/show/userInfo/10996625.html" title="一鼎" target="_blank">一鼎</a></span> <span class="time">13-08-29 14:55</span> </li> <li> <span class="kind"><a href="http://book.zongheng.com/store/c31/c3106/b9/u0/p1/v9/s9/t0/ALL.html" title="青春校园" target="_blank">[青春校园]</a></span> <span class="chap"> <a href="http://www.mmzh.com/book/280776.html" class="fs14" title="那年雪花在飘,谁在忧伤?" target="_blank">那年雪花在飘...</a> <a href="http://book.zongheng.com/chapter/280776/5188594.html" title="正文 真诚璃茉与夜落雪的暗斗" target="_blank">正文 真诚璃茉...</a> </span> <span class="number"> 202/5/0 </span> <span class="author"><a href="http://home.zongheng.com/show/userInfo/9854181.html" title="蕾娜莎" target="_blank">蕾娜莎</a></span> <span class="time">13-08-29 14:55</span> </li>
以上代码中我只想要(.*)和这个格式一样的URL。这正则怎么写。
以下是我写的,
$html=file_get_contents($setting['book_url']);
$k='/
- ';
$k.='(.*)(.*)(.*)';
$k.='/isU';
preg_match_all($k,$html,$rs);
没有匹配到地址
那是当然啦你的正则表达式是‘/
- (.*)(.*)(.*)/isU’
- 之后的.*不匹配换行符,而html代码中
- 后面有若干空格还有换行符
要是你想获取class="main_con"的ul里面的 的话建议你用jquery处理,它提供了多种选择器,类选择器,属性选择器...
test.php
$str=
html;
$pattern="/
preg_match_all($pattern,$str,$matches);
var_dump($matches[1]);
?>
$matches[1]就是你要的url数组
#(.*)#

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov
