0

根据文档,我们在每个 pdf 页面上打印页码,但我的问题是我想在 dom 脚本标签中使用 PHP 变量,但我不能这样做。

<script type="text/php">
    if (isset($pdf)) {
      $font = $fontMetrics->getFont("Arial", "bold");
      $pdf->page_text(555, 745, "{PAGE_NUM}", $font, 7, array(0, 0, 0));
    }
</script>

@php
   $page = "{PAGE_NUM}";// it prints the string "{PAGE_NUM}" but I want current page number here
@endphp

我的问题是我想{PAGE_NUM}在我的普通@phplaravel 刀片文件标签中使用它,以便能够检测到页面更改。有什么办法可以做这件事吗?

4

0 回答 0