【发布时间】:2018-06-27 02:40:41
【问题描述】:
我想在我的 HTML 对象中添加另一个属性和值, 但是,它正在替换当前值。
这是我迄今为止在我的 PHP 文件中编写的代码。
function htmlEncode ( $html ){
$html = preg_replace('~>\s+<~', '><', $html);
$html = html_entity_decode($html);
$dom = new DOMDocument();
$dom->loadHTML($html);
foreach($dom->getElementsByTagName('*') as $div){
foreach ($div->attributes as $attr) {
if($div->nodeName == "h2"){
$class = $attr->nodeName;
$className = $attr->nodeValue;
$div->setAttribute("aria-label", $div->nodeValue);
$result = [
"tagName" => $div->nodeName,
"value" => $div->nodeValue,
$class=> $className,
$attr->nodeName => $attr->nodeValue
];
} else {
$result[] = [
"tagName" => $div->nodeName,
"value" => $div->nodeValue,
$attr->nodeName => $attr->nodeValue
];
}
}
}
$json = json_encode($result, JSON_UNESCAPED_UNICODE);
return $json;
}
但是当我运行代码时
echo json_encode($attr->nodeName);
我得到了两个属性:
“类”“aria-label”
【问题讨论】:
标签: php html html-object