什么时候不应在 HTML 链接中使用 & 实体 (and)?
When should ampersands entity (&) not be used in HTML links?
何时不应在 HTML 链接中使用 & 符号实体 (&
)?
上下文:我问的原因是我正在使用 DOMDocument()
将 <img>
标签转换为不同的 HTML,并且符号被复制。对于我的具体示例,我认为它是由于 mb_convert_encoding()
而发生的,但如果我不使用它,我还有其他问题。也许还有其他时候不应该在 HTML 链接中使用符号实体?
public static function substituteImg($template, $values, $classI='autoInsert', $classF='',$escape=false) {
$classesToReplace = array($classI);
if($template) {
$doc = new DOMDocument();
$template = mb_convert_encoding($template, 'HTML-ENTITIES', 'UTF-8');
$doc->loadHTML($template);
$xpath = new DOMXPath($doc);
foreach( $xpath->query( '//img') as $img) {
// get the classes into an array
$classes = explode(' ', $img->getAttribute('class')); // this will contain the classes assigned to the element
if (array_intersect($classes, $classesToReplace))
{
// preprocess the image name to match the $values keys
$imageName = pathinfo($img->getAttribute("src"),PATHINFO_FILENAME);
if (isset($values[$imageName])) {
if(is_array($values[$imageName])){
//Not a text node
switch($values[$imageName]['type'])
{
case 'a':
$element = $doc->createElement( 'a',htmlentities($values[$imageName]['value']));
$element_href = $doc->createAttribute('href');
$element_href->value=htmlentities($values[$imageName]['attr']);
$element->appendChild($element_href);
if($classF) {
$element_class = $doc->createAttribute('class');
$element_class->value=$classF;
$element->appendChild($element_class);
}
break;
default:{trigger_error("Invalid element type", E_USER_ERROR);}
}
}
else {$element = $doc->createTextNode($escape?htmlentities($values[$imageName]):$values[$imageName]);}
$img->parentNode->replaceChild($element,$img);
}
}
}
$body = $doc->getElementsByTagName('body')->item(0);
$template=$doc->saveHTML($body); //Select the body tag
$template = str_replace(array('<body>', '</body>'), '', $template); //strip the body tags
unset($doc,$xpath);
}
return $template;
}
传递给 substituteImg() 的示例数组
Array
(
[bla] => 2721930660
[link1] => Array
(
[type] => a
[value] => Yes
[attr] => javascript:void(0)
)
[link2] => Array
(
[type] => a
[value] => link
[attr] => https://example.com/index.php?foo=123&bar=321
)
)
只要您想在 HTML 中表达数据 &
,就应该使用 &
,除非您在内容明确标记为 CDATA 的元素中使用它(这意味着 <script>
和 <style>
个元素)。
当您使用 DOM API 来操作文本时,您不应该 手动 使用 &
DOM。 (这就是你在这里所做的)。
如果 DOM 是从 HTML 文档生成的,当您生成 DOM.[=21 时,&
将被解析为 &
=]
如果从DOM生成HTML,&
在转换为HTML时会表示为&
。
For my specific example, I think it is happening due to mb_convert_encoding(),
不,这是由于 $doc->saveHTML($body);
将 DOM 转换为 HTML。
何时不应在 HTML 链接中使用 & 符号实体 (&
)?
上下文:我问的原因是我正在使用 DOMDocument()
将 <img>
标签转换为不同的 HTML,并且符号被复制。对于我的具体示例,我认为它是由于 mb_convert_encoding()
而发生的,但如果我不使用它,我还有其他问题。也许还有其他时候不应该在 HTML 链接中使用符号实体?
public static function substituteImg($template, $values, $classI='autoInsert', $classF='',$escape=false) {
$classesToReplace = array($classI);
if($template) {
$doc = new DOMDocument();
$template = mb_convert_encoding($template, 'HTML-ENTITIES', 'UTF-8');
$doc->loadHTML($template);
$xpath = new DOMXPath($doc);
foreach( $xpath->query( '//img') as $img) {
// get the classes into an array
$classes = explode(' ', $img->getAttribute('class')); // this will contain the classes assigned to the element
if (array_intersect($classes, $classesToReplace))
{
// preprocess the image name to match the $values keys
$imageName = pathinfo($img->getAttribute("src"),PATHINFO_FILENAME);
if (isset($values[$imageName])) {
if(is_array($values[$imageName])){
//Not a text node
switch($values[$imageName]['type'])
{
case 'a':
$element = $doc->createElement( 'a',htmlentities($values[$imageName]['value']));
$element_href = $doc->createAttribute('href');
$element_href->value=htmlentities($values[$imageName]['attr']);
$element->appendChild($element_href);
if($classF) {
$element_class = $doc->createAttribute('class');
$element_class->value=$classF;
$element->appendChild($element_class);
}
break;
default:{trigger_error("Invalid element type", E_USER_ERROR);}
}
}
else {$element = $doc->createTextNode($escape?htmlentities($values[$imageName]):$values[$imageName]);}
$img->parentNode->replaceChild($element,$img);
}
}
}
$body = $doc->getElementsByTagName('body')->item(0);
$template=$doc->saveHTML($body); //Select the body tag
$template = str_replace(array('<body>', '</body>'), '', $template); //strip the body tags
unset($doc,$xpath);
}
return $template;
}
传递给 substituteImg() 的示例数组
Array
(
[bla] => 2721930660
[link1] => Array
(
[type] => a
[value] => Yes
[attr] => javascript:void(0)
)
[link2] => Array
(
[type] => a
[value] => link
[attr] => https://example.com/index.php?foo=123&bar=321
)
)
只要您想在 HTML 中表达数据 &
,就应该使用 &
,除非您在内容明确标记为 CDATA 的元素中使用它(这意味着 <script>
和 <style>
个元素)。
当您使用 DOM API 来操作文本时,您不应该 手动 使用 &
DOM。 (这就是你在这里所做的)。
如果 DOM 是从 HTML 文档生成的,当您生成 DOM.[=21 时,&
将被解析为 &
=]
如果从DOM生成HTML,&
在转换为HTML时会表示为&
。
For my specific example, I think it is happening due to mb_convert_encoding(),
不,这是由于 $doc->saveHTML($body);
将 DOM 转换为 HTML。