php – tcpdf中的内部链接

我正在使用
TCPDF来创建简单的pdf文档.

我正在创建一个页面并使用下面的代码添加链接

$pdf->addTOCPage();
$link = $pdf->AddLink();
$pdf->SetLink($link, 0, -1);

现在链接设置成功.但是要导航到该页面我应该添加什么?
我试过下面的代码,但它什么也没做,

< a href =“#Whattoaddhere”style =“color:blue;”>返回TOC< / a>

最佳答案

 // Create a fixed link to the first page using the * character
 $index_link = $pdf->AddLink();
 $pdf->SetLink($index_link, 0, '*1');
 $pdf->Cell(0, 10, 'Link to INDEX', 0, 1, 'R', false, $index_link);

http://www.tcpdf.org/examples/example_045.phps

更新 –
在tcpdf库中引用此函数addHtmlLink().
您可以通过此添加内部链接

 $pdf->addHtmlLink('#'.$index_link, 'hello');

其中’hello’开始锚的名称,第一个param是链接的标识符.

在你的情况下

 $pdf->addHtmlLink('#'.$link, 'Whatever you like to name it');

 $html = '<a href="#'.$link.'" style="color:blue;">link name</a>';
 $pdf->writeHTML($html, true, false, true, false, '');
点赞