gpt4 book ai didi

php - 在 fpdf 中显示链接

转载 作者:行者123 更新时间:2023-12-01 17:00:01 25 4
gpt4 key购买 nike

当我尝试在 pdf 中显示链接时,它不显示链接,但显示 php 代码或字符串文本。我怎样才能改变它?

这是我的代码

while($fila2 = mysql_fetch_array($fila)) {
$item = $item+1;
$pdf->Cell(5, 8 ,$item, 1);
$pdf->Cell(10, 8 ,$fila2['FOLIO'], 1);
$pdf->Cell(70, 8 ,$fila2['NOMBRE'], 1);
$pdf->Cell(25, 8 ,date("d-m-Y",strtotime($fila2['FECHA_SOLICITUD'])), 1);
$pdf->Cell(25, 8 ,$fila2['TIPO_AUTORIZACION'], 1);
$pdf->Cell(25, 8 ,date("d-m-Y",strtotime($fila2['FECHA_AUTORIZACION'])), 1);
$pdf->Cell(20,8 , '<a href="http://www.intranet.com/mb/rprh06/final.php?folio=$fila2["FOLIO"]" target="_blank">Enlace</a>',1);
$pdf->Ln(8);
}

这是我的结果

enter image description here

我想根据行的结果ID显示类似“查看链接”的内容。但是当我将指针传递到链接上时,它会显示以下内容

enter image description here

谢谢。

最佳答案

基于链接:- http://www.fpdf.org/en/doc/link.htm

你需要这样写:-

$pdf->Link(100,10,10,10, 'http://www.intranet.com/mb/rprh06/final.php?folio='.$fila2[‌​"FOLIO"]);

或者使用Cell():-

$pdf->Cell(20,8 ,'','','','',false, "http://www.intranet.com/mb/rprh06/final.php?folio=".$fila2["FOLIO"]); 

引用:- http://www.fpdf.org/en/doc/cell.htm

注意:- 相应地更改参数值。

关于php - 在 fpdf 中显示链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41972271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com