我可以显示通过SVG元素创建的pdf文档中的文本/数字,但是在某些情况下,我必须显示PHP脚本中的数据,并且它仅显示pdf中的数字而不显示文本。
以下是我脚本中的常规代码
https://codepen.io/WhoAmIAmWho/pen/bQQLXa
如果我将文本“ Test Case for 1”替换为
'+<?PHP echo $test;?> +'
//If $test contains numbers (1,2,3,4....) It is displaying in pdf
//If $test contains text(A,B,C,D....) It is not displaying the pdf and it is truncating
可能是什么原因,如何显示文本?