我正在尝试在pdf上创建动态表格,但这句话不起作用,我不明白为什么:
function celda($txt1,$txt2){
print_r($txt2);
$this->Cell(60,9,$txt1,1,0,'C');
$this->Cell(60,9,$txt2,1,0,'C');
}
$nombre = $p['autor'];
$this->celda("Autor",$nombre);
$ p变量是和asociative数组。
$ txt2字符串未被识别,它只是在pdf上没有打印,但是print_r($ txt2)teste给了我想要的字符串。 如果我没有做出任何指示并把任何其他字符串“像这样”它确实有效。
(我已经用print_r尝试了这个)
实际上,在pdf上打印字符串的函数都不适用于这种asignation。