Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/269.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/18.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
提取td标记的属性值(php)_Php_Regex_Domdocument - Fatal编程技术网

提取td标记的属性值(php)

提取td标记的属性值(php),php,regex,domdocument,Php,Regex,Domdocument,多谢各位 在此处使用XPath: <tr> <td>New order info</td> <td class="emailid"><input type="button" class="product product-info" value="View product" onclick="popupWindow('viewproduct.php?id=481244','emlmsg',650,400)" /></td> &

多谢各位

在此处使用XPath:

<tr>
<td>New order info</td>
<td class="emailid"><input type="button" class="product product-info" value="View product" onclick="popupWindow('viewproduct.php?id=481244','emlmsg',650,400)" /></td>
</tr>
 <tr
$DOMNodelist = $doc->getElementsByTagName('td');
                  foreach($DOMNodelist as $DOMElements) {

                       if ($DOMElements->nodeValue == "New order info") {

                                      ...................
                         }

                    }
$html=项目(0);
var_dump($td);

上面的示例选择前面带有“新订单信息”的
节点。但是,td标签没有id属性。

太棒了!非常感谢你!很高兴看到它帮助了你
<tr>
<td>New order info</td>
<td class="emailid"><input type="button" class="product product-info" value="View product" onclick="popupWindow('viewproduct.php?id=481244','emlmsg',650,400)" /></td>
</tr>
 <tr