在超过页面大小的行中显示大字符串 (FPDF)
我想连续显示以下数组。
$header = array('Sl.', 'Session.', 'Time','Filename','Operator Name','Mobile No.','Amount','SSL Status','SSL Time','Operator Status','Op.Time','Reversal Reqd.?');
但它超出了页面大小。
请帮我。
I want to show the following array in a line without break.
$header = array('Sl.', 'Session.', 'Time','Filename','Operator Name','Mobile No.','Amount','SSL Status','SSL Time','Operator Status','Op.Time','Reversal Reqd.?');
But it exceeds the page size.
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已将此扩展用于 FPDF 类。它引入了 MultiCell 方法(为了我的方便,包含在 OutputLines 方法中)。在此方法中您可以指定最大行数。字符串中任何不适合的部分都将从函数中返回。在这种情况下,您可以创建一个新函数并再次调用 MultiCell,直到它返回
''
。I've used this extension to the FPDF class. It introduces the MultiCell method (for my convenience wrapped in the OutputLines method). In this method you can specify the maximum number of lines. Any part of the string that won't fit, will be returned from the function. In that case you can create a new function and call MultiCell again, until it returns
''
.