我可以使用以下代码在网站上找到选择的选项:
$dom = new DOMDocument();
$dom->loadHTMLFile('http://webseven.com.au/carl/testpage.htm');
$xml = simplexml_import_dom($dom);
//print_r($xml);
$select = $xml->xpath('//table/tr/td/select');
print_r($select);
我得到(例如)
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[name] => product_OnWeb
[tabindex] => 4
)
[option] => Array
(
[0] => Yes
[1] => No
)
)
但我无法找到一种方法来找到哪些被选中。
这可以用 SimpleXML 完成还是有其他方法?
谢谢。
卡尔