1

PHPでは、Simple HTMLDOMParserクラスを使用しています。

複数のAタグを持つHTMLファイルがあります。

次に、特定のテキストが含まれているタグを見つける必要があります。

例えば ​​:

$html = "<a id='tag1'>A</a>
         <a id='tag2'>B</a>
         <a id='tag3'>C</a>
        ";

$dom = str_get_html($html);
$tag = $dom->find("a[plaintext=B]");

プレーンテキストは属性としてのみ使用できるため、上記の例は機能しません。

何か案は?

4

2 に答える 2

3
<?php
include("simple_html_dom.php");
$html = "<a id='tag1'>A</a>
         <a id='tag2'>B</a>
         <a id='tag3'>C</a>
        ";

$dom = str_get_html($html);
$select = NULL;
foreach($dom->find('a') as $element) {
       if ($element->innertext === "B") {
            $select = $element;
            break;   
       }
}
?>
于 2012-06-16T03:36:45.997 に答える
0

探している特定のテキストがそれぞれ 1 つのリンクにのみマップされていると仮定すると (そのように聞こえます)、連想ルックアップ配列を作成できます。私はちょうどこの必要性に遭遇しました。これが私がそれを処理した方法です。この方法では、毎回すべてのリンクをループする必要はありません。

function populateOutlines($htmlOutlines)
{
  $marker = "courses";
  $charSlashFwd = "/";

  $outlines = array();

  foreach ($htmlOutlines->find("a") as $element)
  {
    // filter links for ones with certain markers if required
    if (strpos($element->href, $marker) !== false)
    {
      // construct the key the way you need it
      $dir = explode($charSlashFwd, $element->href);
      $code = preg_replace(
        "/[^a-zA-Z0-9 ]/", "", strtoupper(
          $dir[1]." ".$dir[2]));

      // insert the lookup entry
      $outlines[$code] = $element->href;
    }
  }

  return $outlines;
}

// ...stuff...

$htmlOutlines = file_get_html($urlOutlines);
$outlines = populateOutlines($htmlOutlines);

// ...more stuff...

if (array_key_exists($code, $outlines)) {
  $outline = $outlines[$code];
} else {
  $outline = "n/a";
}
于 2016-05-25T15:51:21.450 に答える