我可以在函数外部看到数组,但是在函数内部没有,如何在函数内部传递变量?

时间:2018-06-21 14:13:35

标签: php mysql pdf session-variables fpdf

对不起英语,不是我的母语。

我正在尝试将数组传递给函数。此阵列包含三个月的预定三个月。这段代码是关于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_dumpecho变量$mes,但是var_dump给我空值,而echo什么也不做。就像我将数组放在函数中时数据丢失了。

我正在尝试通过不同的方法在函数内部传递变量$mes,也许我做得不好。

您认为我该怎么办?

2 个答案:

答案 0 :(得分:1)

确保使数组在类中可用。除非确实需要,否则不要使用全局变量。在您的类中,添加所需的属性和方法:

class Anexo03 extends FPDF {

    public $mes;

    public function setMes($mes)
    {
        $this->mes = $mes;
    }

确保使数组在类中可用。

$mes = $_GET["txtMes"];
$pdf = new Anexo03();
$pdf->setMes($mes);

在TableHeader中,使用$ this-> mes代替$ mes。

$this->Cell($this->anchos[1], $alto, $this->mes[0], 'RBT', 0, 'C', 1);
$this->Cell($this->anchos[1], $alto, $this->mes[1], 'RBT', 0, 'C', 1);
$this->Cell($this->anchos[1], $alto, $this->mes[2], 'RBT', 0, 'C', 1);

答案 1 :(得分:0)

在函数内使用全局$ mes ,然后回显变量