0

我正在尝试/story.php?title=googlegoogle-google-google从字符串中获取$cool。获得它的唯一方法是使用多行正则表达式。我尝试了下面的代码,但没有奏效。谁能帮我这个?

<?php 

    $cool ='<li><span class="sidebar-vote-number"><a href="/story.php?title=gamestarts now">1</a></span><span class="sidebar-article"><a href="/story.php?title=googlegoogle-google-google" class="switchurl">GoogleGoogle Google Google</a></span></li>

        Published News</a></div>
        </div>
        <div class="boxcontent">
            <ul class="sidebar-stories">

        <li><span class="sidebar-vote-number"><a href="/story.php?title=googlegoogle-google-google">1</a></span><span class="sidebar-article"><a href="/story.php?title=googlegoogle-google-google" class="switchurl">GoogleGoogle Google Google</a></span></li>';


    preg_match('/Published News<\/a><\/div>
        <\/div>
        <div class="boxcontent">
            <ul class="sidebar-stories">

        <li><span class="sidebar-vote-number"><a href="(.*?)"/msU', $cool, $match);


    echo $match[1];


        ?>  
4

4 回答 4

3

出什么问题了

preg_match('~Published News.*<li><span class="sidebar-vote-number"><a href="([^"]*)~ms', $cool, $match);

? 确保使用正确的变量$cool

你肯定知道什么?哪个图案?

于 2013-03-11T17:48:02.153 回答
0

“获得它的唯一方法是使用多行正则表达式。” 哦,不,不是。

除此之外,您将数据分配给一个名为 $cool 的变量,但您将一个名为 $game 的变量传递给 preg_match() 函数。

于 2013-03-11T17:47:13.417 回答
0
 preg_match('/Published News<\/a><\/div>
        <\/div>
        <div class="boxcontent">
            <ul class="sidebar-stories">

        <li><span class="sidebar-vote-number"><a href="(.*)">/msU', $cool, $match);

有用。

于 2013-03-11T17:52:59.713 回答
0

如果你的 HTML 字符串是半格式的,你可以使用 Xpath。http://codepad.org/vVBFNY7r

<?php
$cool ='<ul><li>
<span class="sidebar-vote-number"><a href="/story.php?title=gamestarts now">1</a></span>
<span class="sidebar-article"><a href="/story.php?title=googlegoogle-google-google" class="switchurl">GoogleGoogle Google Google</a></span>
</li></ul>';
$dom = new DOMDocument();
$dom->loadHTML($cool);

$xpath = new DOMXPath($dom);
$elements= $xpath->query('//a/@href');

if (!is_null($elements)) {
  foreach ($elements as $element) {
    echo "<br/>[". $element->nodeName. "]";

    $nodes = $element->childNodes;
    foreach ($nodes as $node) {
      echo $node->nodeValue. "\n";
    }
  }
}

输出:

<br/>[href]/story.php?title=gamestarts now
<br/>[href]/story.php?title=googlegoogle-google-google
于 2013-03-11T18:10:03.397 回答