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.
我可以使用以下代码生成条形码:
$code = '12345';
然后生成条形码,我执行以下操作:
<barcode code="$code" type="C39" size="0.5" height="2.0" />
但是,它没有生成正确的 id。有什么我做错了吗?我正在使用的是 mPDF 工具,我无法更改为其他 pdf 工具。
谢谢..
很难分辨这两个代码片段的语法是什么,但如果需要以 XML 格式打印 PHP 变量,则需要指定它是 PHP:
<barcode code="<?php echo $code; ?>" type="C39" size="0.5" height="2.0" />