如何在
中提供回声功能 $this->excel->getActiveSheet()->setCellValue('B3', 'Actual Spending FY 2012-2013');
在上面的代码而不是2012-2013中,我必须使用<?php echo date('Y', strtotime('-1 year')).'-'.date('Y'); ?>
,如何分配它。有人可以帮我谢谢。
答案 0 :(得分:1)
简单,只需将其连接起来:
$s = 'Actual Spending FY '.date('Y', strtotime('-1 year')).'-'.date('Y');
$this->excel->getActiveSheet()->setCellValue('B3', $s);