Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法弄清楚如何使用 tim thumb 在 xslt 中裁剪图像 例如下面的代码在 php 中:
<img src="include/timthumb.php?src=http://localhost/testdata/1830censusfiscalchart.jpg&w=400&h=200 " />
我的问题是如何在 xsl 中编写上面的代码,我尝试了不同的方法,但它一直在抛出错误。
如果您想&在 XSLT 输出的属性中使用与号 ( ),您需要将它们“转义”,&以便 XML 格式正确。像这样的东西:
&
&
<img src="include/timthumb.php? src=http://localhost/testdata/1830censusfiscalchart.jpg&w=400&h=200 " />