FPDF - 如何更改 foreach 中的单元格大小 php
FPDF - How to change cell size in a foreach php
http://phppot.com/php/generate-pdf-from-mysql-data-using-fpdf/
我使用此代码,但它不起作用。
<?php
require_once("dbcontroller.php");
$db_handle = new DBController();
$result = $db_handle->runQuery("SELECT * FROM toy");
$header = $db_handle->runQuery("SELECT `COLUMN_NAME`
FROM `INFORMATION_SCHEMA`.`COLUMNS`
WHERE `TABLE_SCHEMA`='blog_samples'
AND `TABLE_NAME`='toy'");
require('fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',12);
foreach($header as $heading) {
foreach($heading as $column_heading)
$pdf->Cell(90,12,$column_heading,1);
}
foreach($result as $row) {
$pdf->SetFont('Arial','',12);
$pdf->Ln();
foreach($row as $column)
$pdf->Cell(90,12,$column,1);
}
$pdf->Output();
?>
我想更改 foreach 命令,我想检查 mysql,当 $header 为 'fun' 时,我希望单元格比其他单元格小一点。
我用 if 试了一下,但没用
请帮忙!
要根据您的情况减小单元格的宽度,您可以这样做:
// your code
foreach($header as $heading){
foreach($heading as $column_heading){
if($column_heading == "fun"){
$pdf->Cell(45,12,$column_heading,1);
}else{
$pdf->Cell(90,12,$column_heading,1);
}
}
}
// your code
已编辑:
// your code
$pdf->SetFont('Arial','B',12);
foreach($header as $heading){
$counter = 1;
foreach($heading as $column_heading){
if($counter > 3){
$pdf->Cell(45,12,$column_heading,1);
}else{
$pdf->Cell(90,12,$column_heading,1);
}
++$counter;
}
}
foreach($result as $row){
$counter = 1;
$pdf->SetFont('Arial','',12);
$pdf->Ln();
foreach($row as $column){
if($counter > 3){
$pdf->Cell(45,12,$column,1);
}else{
$pdf->Cell(90,12,$column,1);
}
++$counter;
}
}
$pdf->Output();
引用如下:
http://phppot.com/php/generate-pdf-from-mysql-data-using-fpdf/ 我使用此代码,但它不起作用。
<?php
require_once("dbcontroller.php");
$db_handle = new DBController();
$result = $db_handle->runQuery("SELECT * FROM toy");
$header = $db_handle->runQuery("SELECT `COLUMN_NAME`
FROM `INFORMATION_SCHEMA`.`COLUMNS`
WHERE `TABLE_SCHEMA`='blog_samples'
AND `TABLE_NAME`='toy'");
require('fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',12);
foreach($header as $heading) {
foreach($heading as $column_heading)
$pdf->Cell(90,12,$column_heading,1);
}
foreach($result as $row) {
$pdf->SetFont('Arial','',12);
$pdf->Ln();
foreach($row as $column)
$pdf->Cell(90,12,$column,1);
}
$pdf->Output();
?>
我想更改 foreach 命令,我想检查 mysql,当 $header 为 'fun' 时,我希望单元格比其他单元格小一点。
我用 if 试了一下,但没用 请帮忙!
要根据您的情况减小单元格的宽度,您可以这样做:
// your code
foreach($header as $heading){
foreach($heading as $column_heading){
if($column_heading == "fun"){
$pdf->Cell(45,12,$column_heading,1);
}else{
$pdf->Cell(90,12,$column_heading,1);
}
}
}
// your code
已编辑:
// your code
$pdf->SetFont('Arial','B',12);
foreach($header as $heading){
$counter = 1;
foreach($heading as $column_heading){
if($counter > 3){
$pdf->Cell(45,12,$column_heading,1);
}else{
$pdf->Cell(90,12,$column_heading,1);
}
++$counter;
}
}
foreach($result as $row){
$counter = 1;
$pdf->SetFont('Arial','',12);
$pdf->Ln();
foreach($row as $column){
if($counter > 3){
$pdf->Cell(45,12,$column,1);
}else{
$pdf->Cell(90,12,$column,1);
}
++$counter;
}
}
$pdf->Output();
引用如下: