DOMElement::setAttribute

(PHP 5, PHP 7, PHP 8)

DOMElement::setAttribute添加新的或修改现有的属性

描述

public DOMElement::setAttribute(string $qualifiedName, string $value): DOMAttr|bool

将名为 qualifiedName 的属性设置为给定值。如果属性不存在,则会创建它。

参数

qualifiedName

属性的名称。

value

属性的值。

返回值

创建或修改的 DOMAttrfalse 如果发生错误。

错误/异常

DOM_NO_MODIFICATION_ALLOWED_ERR

如果节点是只读的,则引发此异常。

示例

示例 #1 设置属性

<?php
$doc
= new DOMDocument("1.0");
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
$newnode->setAttribute("align", "left");
?>

参见

添加注释

用户贡献的注释 6 个注释

13
Rakesh Verma - rakeshnsony at gmail dot com
13 年前
<?php
// 将您的 html 存储到 $html 变量中。
$html="
<html>
<head>
<title>Untitled Document</title>
</head>

<body>
<a href='http://example.com'>Example</a><br>
<a href='http://google.com'>Google</a><br>

<a href='http://www.yahoo.com'>Yahoo</a><br>
</body>

</html>"
;

$dom = new DOMDocument();
$dom->loadHTML($html);

// 评估 HTML 中的锚点标签
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");

for (
$i = 0; $i < $hrefs->length; $i++) {
$href = $hrefs->item($i);
$url = $href->getAttribute('href');

// 删除并设置 target 属性
$href->removeAttribute('target');
$href->setAttribute("target", "_blank");

$newURL=$url."/newurl";

// 删除并设置 href 属性
$href->removeAttribute('href');
$href->setAttribute("href", $newURL);
}

// 保存 html
$html=$dom->saveHTML();

echo
$html;

?>
2
lehal2@hotmail
11 年前
使用 Dom 从文本中删除并添加第一个 img 标签的宽度和高度。我希望这能帮助您节省时间。
<?php
$html
= '

<img src="http://www.example.com/images/header.jpg" width="898" height="223" style="border-bottom:5px solid #cccccc;"/>
<img src="http://www.example.com/images/header2.jpg" width="898" height="223" style="border-bottom:5px solid #cccccc;"/>
'
;

$doc = DOMDocument::loadHTML($html);
$c =0;
foreach(
$doc->getElementsByTagName('img') as $image){
if (
$c>0) continue;
foreach(array(
'width', 'height') as $attribute_to_remove){
echo
$attribute_to_remove;
if(
$image->hasAttribute($attribute_to_remove)){
$image->removeAttribute($attribute_to_remove);

}
if(
$attribute_to_remove=='height'){
if(!
$image->hasAttribute($attribute_to_remove)){
$image->setAttribute($attribute_to_remove,'220');

}}
if(
$attribute_to_remove=='width'){
if(!
$image->hasAttribute($attribute_to_remove)){
$image->setAttribute($attribute_to_remove,'700');

}}
$c = $c+1;
}
}
echo
$doc->saveHTML();
1
info at ensostudio dot ru
2 年前
使用/不使用值的带有属性的 HTML 5 标签的渲染解决方案
<?php
$dom
= new DOMImplementation();
$doc = $dom->createDocument(null, 'html', $dom->createDocumentType('html'));

$tag = $doc->appendChild($doc->createElement('input'));
$tag->setAttribute('type', 'text');
$tag->setAttribute('disabled', '');

echo
$doc->saveHTML($tag); // <input type="text" disabled="">

$doc->normalize(); // 规范化属性
echo $doc->saveHTML($tag); // <input type="text" disabled>
?>
2
address at gmail dot com
16 年前
如果要设置一个 id 为 "1" 的元素的属性

<?php
$dom
= new DomDocument();
$dom->load('test.xml');
$xp = new DomXPath($dom);
$res = $xp->query("//*[@id = '1']");
$res->item(0)->setAttribute('title','2');
$dom->save('test.xml');
?>
-4
karvjorm at users.sourceforge.net
17 年前
$dom = new DomDocument('1.0','iso-8859-15');

$ht_ml = $dom->appendChild($dom->createElement('html'));
$ht_ml->setAttribute('xmlns','http://www.w3.org/1999/xhtml');
$ht_ml->setAttribute('xml:lang','fi');
$ht_ml->setAttribute('lang','fi');

结果

<?xml version="1.0" encoding="iso-8859-15"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fi" lang="fi">
-5
Vasil Rangelov
17 年前
@karvjorm,
使用这种方法并不完全是最佳实践。事实上,我认为这可能是一个错误。
以 "xml" 开头的名称是保留的(在本例中用于命名空间)。
我认为 setAttribute() 在这种情况下应该返回 false,但它似乎没有。

不过,正确的方法是使用 createElementNS()。
它允许你在创建元素节点时指定命名空间。

所以你的等价代码(添加了 $html 以便于换行)是

$dom = new DomDocument('1.0','iso-8859-15');
$html = $dom->createElementNS('http://www.w3.org/1999/xhtml', 'html');
$ht_ml = $dom->appendChild($html);
$ht_ml->setAttribute('xml:lang','fi');
$ht_ml->setAttribute('lang','fi');
To Top