与codeigniter的highcharts年间隔

时间:2016-12-02 16:26:08

标签: php codeigniter date

products.push.apply(products, data)

我有上面的代码,从1月到12月(xAxis)为当年开始提供如下结果:

    navigator.geolocation.getCurrentPosition(function(position) {
      document.write('<iframe src="http://weather.wdtinc.com/imap/imap5/?&INIT_LAT=' +
        position.coords.latitude+
        '&INIT_LON='+
        position.coords.longitude+'" > </iframe>');
  });

如何在<?php for ($i= 1; $i <= 12; $i++) { if ( $i <= 9) { $month = '0' . $i; } else { $month = $i; } $date = date('d'); $year = date("Y"); // $month = date('Y-m-d', strtotime(date('Y').'-'.$i.'-'.date('d'))); $month = date('Y-m-d', strtotime($date."-" . $i ."-". $year)); $where = array('date_saved >=' => $year . "-" . '0' . $i . '-' . '01', 'date_saved <=' => $year . "-" . '0' . $i . '-' . '31'); $invoice[$i] = count($this->db->where($where)->get('tbl_invoices')- result()); } var_dump( $invoice); ?> array(12) { [1]=> int(0) [2]=> int(0) [3]=> int(0) [4]=> int(0) [5]=> int(0) [6]=> int(0) [7]=> int(0) [8]=> int(0) [9]=> int(0) [10]=> int(1) [11]=> int(3) [12]=> int(0) } 选择年度基本?

我一直在尝试以下功能,但我发现自从datepicker使用当前年份选项highcharts后,我的结果无效。 为了让我有年度基本的datepicker选项,有什么建议吗?

(int)

0 个答案:

没有答案