✏️ 正在编辑: MesesIntervalo.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/views/helpers/MesesIntervalo.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Zend_View_Helper_MesesIntervalo extends Zend_View_Helper_Abstract { /* * */ public function mesesIntervalo($dataInicio, $dataFim){ $date = explode("/", $dataInicio); $start = new DateTime("$date[2]-$date[1]-$date[0]"); $start->modify('first day of this month'); $date = explode("/", $dataFim); $end = new DateTime("$date[2]-$date[1]-$date[0]"); $end->modify('first day of next month'); $interval = DateInterval::createFromDateString('1 month'); $period = new DatePeriod($start, $interval, $end); $array = array(); foreach ( $period as $dt ) { $array[] = $dt->format("m/Y"); } return $array; } }
💾 保存文件
← 返回文件管理器