使用 html2fpdf 脚本创建 PDF 文件时缺少会话值
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您没有提供任何示例代码,我猜您很可能忘记了 php 文件开头的 session_start() 。
然后确保您要读取的会话变量设置在同一域上。请参阅 http://domain.tld 和 http://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.