在服务器上保存多个图像

时间:2012-12-28 12:55:37

标签: php cakephp jqplot

以下函数呈现jqplot图表:

function renderChart($chart_id = null){
    //magic...
}

$ chart_id定义要呈现的图表的ID。每个图表都有自己的设置。

在renderChart函数(../views/charts/render_chart.ctp)的相应视图中,将显示图表。我知道要保存它我可以使用javascript和ajax。

我需要做的是将多个图表保存为服务器上的图像。

function saveMultipleImages(){
    renderChart(1);
    renderChart(2);
    renderChart(3);
}

但是这个解决方案只是将我重定向到第一个函数并停在那里。

1 个答案:

答案 0 :(得分:0)

function renderChart($chart_id = null){
    //magic...

   return true;
  }


function saveMultipleImages(){
 $this->renderChart(1);
 $this->renderChart(2);
 $this->renderChart(3);
}