我将在头函数中回显变量。 我有这样的可变代码:
$bulan=array("","Jan","Feb", "Mar", "Apr", "Mei", "Jun", "jul", "Agust", "Sept", "Okt", "Nop", "Des");
$tgl1=$_GET['tgl1']; //2017-08-10
$tgl2=$_GET['tgl2']; //2017-08-15
$tg1=substr($tgl1,8); //10
$tg2=substr($tgl2,8); //15
$bln1=$bulan[substr($tgl1,5,2)*1]; //Agust
$bln2=$bulan[substr($tgl2,5,2)*1]; //Agust
$thn=substr($tgl2,0,4); //2017
我的头函数中的有代码来回显这样的变量:
$this->Cell(20, 0.5, 'Tanggal '.$tg1.' '.$bln1.' - '.$tg2.' '.$bln2.' '.$thn, 0, '0', "C", false);
我想要显示如下: Tanggal 10 Agust - 15 Agust 2017
但它只是显示: Tanggal -
如何在标题中显示变量?
答案 0 :(得分:0)
我想我有一个解决方案。但它不是最好的解决方案。 我无法回应函数中的变量,所以即时回显变量的内容。 像这样:
$this->Cell(20, 0.5, 'Tanggal '.substr($_GET['tgl1'],8).'etc...', 0, '0', "C", false);
如果有更好的方式请评论