FPDF不保存pdf文件中的php帖子数据

时间:2017-02-12 13:32:00

标签: php pdf fpdf

我尝试使用FPDF生成pdf文件。我将发布数据发送到脚本,这些数据在保存之前在pdf页面中正确显示。当我保存它时,我在pdf文件中得到空白单元格,这些单元格通过发布数据保存,而静态文本保存正常。

$pdf->SetFont('Arial','',10);
for($x=0; $x<count($_POST['cat_name']); $x++){
  $pdf->Cell(40,10,$_POST['cat_name'][$x],1,0,'L');
  $pdf->Cell(40,10,$_POST['cat_code'][$x],1,0,'L');
  $pdf->Cell(40,10,$_POST['total_amount'][$x],1,1,'L');
}

正确显示保存数据之前。只是标题是静态的

enter image description here

但是在pdf文件中这些单元格是空白的

enter image description here

那么如何解决这个问题以保存文件中的php帖子数据呢?

1 个答案:

答案 0 :(得分:0)

使用此代码直接保存文件解决了问题

if(isset($update["callback_query"])) {
  $parameters["method"] = "answerCallbackQuery";
  $parameters["callback_query_id"] = $update["callback_query"]["id"];
  $parameters["url"] = "<url_game>";
  echo json_encode($parameters);
}

$parameters = array('chat_id' => $chatId);
// method è il metodo per l'invio di un messaggio (cfr. API di Telegram)
$parameters["method"] = "sendGame";
$parameters["game_short_name"] = "prova";

感谢Khem的提示