所以我对FPDF库有一个问题,该库用于生成包含来自MYSQL-DB的数据的PDF文档。
在PHP 5中,所有代码都正常工作,我得到以下输出:
我已经使用此代码生成它:
<?php
require('mysql_table.php');
class PDF extends PDF_MySQL_Table
{
function Header()
{
$this->SetFont('Arial','',18);
$this->Cell(0,6,'test',0,1,'C');
$this->Ln(10);
//Ensure table header is output
parent::Header();
}
}
//Connect to database
mysql_connect('localhost','root','');
mysql_select_db('testDB');
$pdf=new PDF();
$pdf->AddPage();
$prop=array('HeaderColor'=>array(255,150,100),
'color1'=>array(210,245,255),
'color2'=>array(255,255,210),
'padding'=>2);
$pdf->Table('SELECT `first_name`, `last_name`, `title` FROM a3324_userWHERE DELETED = 0 order by `date_entered`',$prop);
header('Content-type: test/pdf');
$pdf->Output('test'.".pdf", 'D');
?>
当我尝试在我的Linux服务器上实现相同功能时,它注意到我应该使用mysqli_ *,因为PHP 7不支持旧版本。
我已经用mysqli-variant替换了所有函数,并得出以下结果:
如您所见,它可以正常工作,但它不会从数据库中检索列名。我做了一些研究,并注意到检索列名的旧函数如下:
foreach($this->aCols as $i=>$col)
{
if($col['c']=='')
{
if(is_string($col['f']))
$this->aCols[$i]['c']=ucfirst($col['f']);
else
$this->aCols[$i]['c']=ucfirst(mysql_field_name($res,$col['f']));
}
}
由于我需要使用mysqli,我发现函数mysql_field_name()
不再使用,并被mysqli_fetch_field()
或mysqli_fetch_fields()
取代。
我尝试将mysql_field_name($res,$col['f'])
替换为mysqli_fetch_fields($res,$col['f'])
或mysqli_fetch_field()
,但这也不起作用。
我的问题在哪里?
答案 0 :(得分:1)
尝试:
foreach($this->aCols as $i=>$col)
{
if($col['c']=='')
{
if(is_string($col['f']))
$this->aCols[$i]['c']=ucfirst($col['f']);
else
$this->aCols[$i]['c']=ucfirst(mysqli_fetch_field_direct($res, $col['f'])->name);
}
}
或使用:
function mysqli_field_name($res, $fieldnr) {
$finfo = mysqli_fetch_field_direct($res, $fieldnr);
return is_object($finfo) ? $finfo->name : false;
}