使用 html2fpdf 脚本创建 PDF 文件时缺少会话值

发布于 2024-11-07 00:53:36 字数 78 浏览 0 评论 0原文

我正在使用 html2fpdf 脚本创建 HTML 到 PDF,我无法在其中写入会话值。

我没有在 PDF 文件中获取会话值。

I am creating HTML to PDF using html2fpdf script, I am not able to write session value in that.

I am not getting session value in PDF file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情未る 2024-11-14 00:53:36

由于您没有提供任何示例代码,我猜您很可能忘记了 php 文件开头的 session_start() 。

然后确保您要读取的会话变量设置在同一域上。请参阅 http://domain.tldhttp://www.domain.tld - 不一样!
即使它们显示相同的网站,如果您在 http://domain.tld/test.php 并尝试在 http://www.domain.tld/test.php 上显示它,这行不通!

然后,在确保可以显示 var 后,您应该能够在 pdf 中打印它。

Since you did not provided any sample code, I guess most probably you have forgotten session_start(), at the beginning of your php file.

Then make sure the session var you want to read is set on the same domain. See, http://domain.tld and http://www.domain.tld - are not the same!
Even they show the same website, if you set a session var on http://domain.tld/test.php and try to display it on http://www.domain.tld/test.php , it won't work!

And then, after you make sure you can display the var, then you should be able to print it in your pdf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文