Home > Backend Development > PHP Tutorial > fpdf一个有关问题

fpdf一个有关问题

WBOY
Release: 2016-06-13 10:06:13
Original
937 people have browsed it

fpdf一个问题,
pdf->Cell(1.2,0.5,'STORE#',1,0,C);
$pdf->Cell(0,0.5,$store,1,0,C);

以上代码生成2个单元格,且在一行上。
我不理解。为什么能并排在一行上。
我查了手册,讲
Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, int fill [, mixed link]]]]]]])
第一个参数:
w
Cell width. If 0, the cell extends up to the right margin.
h
Cell height. Default value: 0.

第一个参数为:宽度,第二个参数为高度。
怎么能出来??请高手计

------解决方案--------------------
因为你的 fill 为 0,所以 cell 不会换行
只有当 fill 大于 1 时, cell 才会按 h 指定的行高换行

------解决方案--------------------
手误:)

Cell
Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, int fill [, mixed link]]]]]]]) 
版本
1.0 
內容
显示一个储存格 (长方形范围),同时,也提供其它功能选项,包括(边框、背景颜色、字符串)。储存格左上角的位置为目前位置。文字可以除意排列或置中。则行这个命令之后,目前位置便会向右移或移到下一行。它可以会在文字上建立一个连结。若果已经启动自动分页功能,当内容超出了储存格的限制,输出数据之前会自动执行分页功能。 
參數

储存格宽度。 若为:0,这个储存格会延伸至页的右边边缘。 

储存格高度。默认值为:0. 
txt 
字符串显示。默认值为:空白 
border 
若果要围绕储存格边缘显示边框,可用下面的数值: 
0: 没有边框 
1: 边框 
或包含以下一些或所有字符串(在任何指示下): 
L: 左边边线 
T: 顶部边线 
R: 右边边线 
B: 底部边线 
默认值为:0 
ln 
则行这个功能之后,目前位置应在那里。
可用下面的数值: 
0: 往右边移 
1: 到下一行的开端 
2: 往下面 
默认值为:0 
align 
允许排列文字置中。可用下面的数值: 
L 或空格符:左边排列 (默认值) 
C: 中间排列 
R: 右边排列 
fill 
可使到储存格的背景不是透明(1)或透明(0). 默认值为:0 
link 
由 AddLink() 回报 URL 或 识别符。 

------解决方案--------------------
如果你把 cell 看作 heml 的 td 标记,可能就有助于理解了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template