我找到了一个用于从网页中获取项目标题的 php 函数,它使用的 reg exp 是,/<div class=\"detail\">(.*?)<p>/si
如以下代码所示:和之前没有贪心,但是什么意思?谢谢!/<div class=\"detail\">
(.*?)<p>
<p>
/si
<?php
// Get the title
function match_title( $content ) {
preg_match( '/<div class=\"detail\">(.*?)<p>/si', $content, $result );
isset( $result ) ? $title = trim( addslashes( $result[1] ) ) : $title = '';
return $title;
}
$url = "http://a.m.taobao.com/i21708516412.htm";
$item = file_get_contents($url);
$title=match_title( $item );
?>