如何在$ this-> excel-> getActiveSheet() - > setCellValue('B3','')中给出echo函数;

时间:2014-01-07 10:15:14

标签: php phpexcel

如何在

中提供回声功能
      $this->excel->getActiveSheet()->setCellValue('B3', 'Actual Spending FY 2012-2013');

在上面的代码而不是2012-2013中,我必须使用<?php echo date('Y', strtotime('-1 year')).'-'.date('Y'); ?>,如何分配它。有人可以帮我谢谢。

1 个答案:

答案 0 :(得分:1)

简单,只需将其连接起来:

$s = 'Actual Spending FY '.date('Y', strtotime('-1 year')).'-'.date('Y');
$this->excel->getActiveSheet()->setCellValue('B3', $s);