对不起,英语不是我的母语。
我正在尝试将数组传递到函数中。这个数组包含一个确定的三个月。这段代码是关于fpdf的,我正在做一个pdf报告。
代码如下:
<?php
include('../../../libreria/engine.php');
require_once('../fpdf.php');
$mes = $_GET["txtMes"];
$per = $_GET["txtPer"];
$_SESSION["tmpMes"] = $_SESSION["sqlDataPDF"]["titulo"];
$sql = $_SESSION["sqlDataPDF"]["textoSQL"];
$mes = $_SESSION["sqlDataPDF"]["meses"];
echo $mes[0];
$rs = mysql_query($sql);
class Anexo03 extends FPDF
{
var $ProcessingTable; //Es la propiedad que indica si se esta procesando la tabla, para repetir nuevamente el encabezado.
var $anchos; // Son los anchos de las diferentes columnas
var $left; //Margen izquierdo inicial
var $clasificador;
function Header()
{ //0 1 2 3 4
$this->anchos = array(100, 20, 30);
$this->left = 15;
$this->ProcessingTable = true;
//Print the table header if necessary
}
function TableHeader($clasificador='x', $y=38, $c=false)
{
if($c)
{
$clasificador = $this->clasificador;
}
$this->clasificador = $clasificador;
$alto = 6; //Es el alto de la linea
$this->SetFillColor(209,211,223);
$this->SetFont('Arial','',10);
$this->SetXY($this->left,$y);
$ancho = $this->anchos[0] + $this->anchos[1] + $this->anchos[2] + $this->anchos[3];
//$this->Cell($ancho,$alto,"Clasificador: $clasificador", 'LRT',0,'L',1);
//$this->SetXY($this->left,$y+4);
$this->Cell($this->anchos[0],$alto,"Clasificador", 'LBT',0,'C',1);
$this->Cell($this->anchos[1],$alto,'$mes[0]', 'RBT',0,'C',1);
$this->Cell($this->anchos[1],$alto,'$mes[1]', 'RBT',0,'C',1);
$this->Cell($this->anchos[1],$alto,'$mes[2]', 'RBT',0,'C',1);
$this->Cell($this->anchos[2],$alto,"Total Trimestral", 'RBT',0,'C',1);
}
此代码正在接收数组。我可以回显变量 $mes
没有问题,我可以看到数据,问题来了,当我把里面 function TableHeader
. 我试着 var_dump
以及 echo
变量 $mes
但是 var_dump
给我空的和 echo
什么也不做。就像我将数组放入函数中时数据丢失一样。
我试着用不同的方法传递变量 $mes
内部功能,可能我做得不好。
你觉得我能做什么?
2条答案
按热度按时间8gsdolmq1#
在函数中使用全局$mes,然后回显变量
20jt8wwn2#
确保数组在类中可用。除非确实需要,否则不要使用全局搜索。在类中,添加所需的属性和方法:
确保数组在类中可用。
在tableheader中,使用$this->mes而不是$mes。