假设我有一个链接(例如:www.example.com),我想将链接作为“单击此处”插入FPDF的单元格中。我的示例代码如下:
$pdf->Cell(70,12,'Download Link',1);
$pdf->Cell(70,12,'',1);
$link="www.example.com"
$pdf->Write(12,'Click Here',$link);
我希望“单击此处” 选项出现在第二个单元格内。但是它出现在单元格旁边。如何使它出现在单元格中?
答案 0 :(得分:0)
您可以只使用pdf中的Link
函数,参考文献:http://www.fpdf.org/en/doc/link.htm。
$pdf->Link(70,12,10,10, 'http://www.example.com');
或以Cell
参考:http://www.fpdf.org/en/doc/cell.htm
$pdf->Cell(70,12,'Download Link', '','','',false, "http://www.example.com");