如何更改Cakephp中的日期格式



我使用此代码来显示发票日期

$this->SetX(135);
$this->SetFont('Arial','B',14);
$this->Cell(70,8,___('Date:')." ".$invoice['date'],0,0,'C',false);

但它以Y,m,d的格式显示我想用格式d,m,Y 显示

请问我该怎么修?

我用这个代码修复了它:

$this->Cell(70,8,___('Date:')." ".date("d-m-Y", strtotime($invoice['date'])),0,0,'C',false);

更干净的方法是使用CakeTime::format((:

$this->Cell(70,8,___('Date:')." ".CakeTime::format($invoice['date'], '%d-%m-%Y'),0,0,'C',false);

相关内容

  • 没有找到相关文章

最新更新