此代码 $node->setAttribute('src',''); 确实转义了 PHP 标签。 有没有办法使用 $dom->createProc-6ren">
gpt4 book ai didi

php - 如何在 PHP 上使用 DOM 将 PHP 代码添加到属性?

转载 作者:搜寻专家 更新时间:2023-10-31 21:40:30 24 4
gpt4 key购买 nike

我怎样才能用 PHP DOM 做这样的事情?

<img src="<?php echo $picsrc; ?>">

此代码

$node->setAttribute('src','<?php echo $picsrc;?>');

确实转义了 PHP 标签。

<img src="&lt;?php echo $picsrc; ?&gt;">

有没有办法使用

$dom->createProcessingInstruction()

对于属性值?

最佳答案

你应该试试这个

$srcPath = '<?php echo $picsrc;?>';
$node->setAttribute('src', html_entity_decode($srcPath));

关于php - 如何在 PHP 上使用 DOM 将 PHP 代码添加到属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11721754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com