我在尝试使用 PHP 处理指令为属性设置值时遇到问题:
XSLT
<li itemprop="startDate">
<xsl:attribute name="content">
<xsl:processing-instruction name="php">
echo "Monday";
?</xsl:processing-instruction>
</xsl:attribute>
Monday
</li>
页面渲染良好,但属性始终为空。
输出
<li itemprop="startDate" content="">Monday</li>
我期待 PHP 在属性中回显一个值