有一个FPDF类,我在类中传递一个名为 productList 的函数。
$myclass->productList($table_rows);
该数组包含MySql表中的一些行
喜欢
Array (
[0] => Array ( [id] => 170 [product] => 10211 [qty] => 1 [price] => 50 )
[1] => Array ( [id] => 171 [product] => 10211 [qty] => 1 [price] => 50 ) 1
我正在使用额外的函数来解析数组,但它只显示第一行。 此外,它显示包含数据的表列名称
例如id1,data1 ## somedata
我想要的输出是
1,#somedata,#一些 2,#somedata,#一些
所需的输出图像:
当前输出图片:
首先我发布数组打印功能
function makeNestedList(array $Array){
$w = array(90, 25, 20, 25,30);
foreach($Array as $Key => $Value){
$Output = $Key;
if(is_array($Value)){
$Output .= $this->makeNestedList($Value);
}else{
$Output .= $Value;
}
//Product List
$this->Cell($w[0],6,$Output,'LR',0,'L',1);
}
return $Output;
}
负责打印的产品列表功能
function productList($pdata)
{
//Function to print product table
// Product Table Header
$header = array('Product', 'Qty', 'Rate', 'Discount','Subtotal');
//cell width $w
$w = array(90, 25, 20, 25,30);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
// Product Data <===== Here is problem
$this->makeNestedList($pdata);
// Closing line and extra
$this->Cell(array_sum($w),0,'','T');
$this->Ln();
}
答案 0 :(得分:0)
经过长时间艰苦的尝试后,我得到了这个简单的解决方案
//get $pdata
$this->productList($tablerows);
function productList($pdata)
{
and set a loop
foreach($table_rows as $key => $value)
{
$this->Cell($w[0],6,$value['product'],'LR',0,'L',$fill);
$this->Cell($w[1],6,$value['qty'],'LR',0,'C',$fill);
$this->Cell($w[2],6,$value['price'],'LR',0,'C',$fill);
$this->Cell($w[3],6,$value['discount'],'LR',0,'C',$fill);
$this->Cell($w[4],6,$value['subtotal'],'LR',0,'C',$fill);
$this->Ln();
$fill = !$fill;
}
答案 1 :(得分:0)
如果您的数组数据如下所示:
array (
array ( 'product' => 10211, 'qty' => 1, 'rate' => 50, 'discount' => 50 , 'subtotal' => 50 ),
array ( 'product' => 10212, 'qty' => 1, 'rate' => 100, 'discount' => 100 , 'subtotal' => 100 )
);
此代码可能适合您。我看到你将数组的所有值连接到$Output
并放入一个单元格。如果你想制作表格,你就不应该这样做。
function makeNestedList(array $Array){
$w = array(90, 25, 20, 25,30);
for ($i=0; $i < count($Array) ; $i++) {
$ii = 0;
foreach ($Array[$i] as $key => $value) {
$this->Cell($w[$ii],6,$Output,'LR',0,'L',1);
$ii++;
}
}
}