我正在使用 curl 并尝试使用 DOMXPath 从选择列表中获取选定的项目我很接近,我可以获得选择及其选项,只是无法弄清楚如何判断一个是否被选中。
所以这是我到目前为止的代码。我可以获得选择名称和所有选项文本和值
$newDom = new domDocument;
$newDom->loadHTML($result);
$xpath = new DOMXPath($newDom);
$values = $xpath->evaluate("/html/body//select");
for ($cnt = 0; $cnt < $values->length; $cnt++) {
$value = $values->item($cnt);
$name = $value->getAttribute('name');
$options = $xpath->query("*/select[@name='".$name."']/option");
foreach ($options as $option) {
$optionValue = $option->getAttribute('value');
$optionContent = $option->nodeValue;
}
}
So i replaced
$options = $xpath->query("*/select[@name='".$name."']/option");
和
$options = $xpath->query("*/select[@name='".$name."']/option[@selected='selected']");
现在 $options 是空的
html看起来像
<select name=inc_paytype>
<option value="0">None<option value="1">Cash/Check<option value="2" selected>Credit<option value="3">ECash<option value="4">EFT<option value="5">Credit once, then cash/check
</select>
谢谢你的帮助