芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/lib/phpexcel/PHPExcel/Writer/PDF.php
renderer = new $rendererName($phpExcel); } /** * Magic method to handle direct calls to the configured PDF renderer wrapper class. * * @param string $name Renderer library method name * @param mixed[] $arguments Array of arguments to pass to the renderer method * @return mixed Returned data from the PDF renderer wrapper method */ public function __call($name, $arguments) { if ($this->renderer === null) { throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined."); } return call_user_func_array(array($this->renderer, $name), $arguments); } /** * {@inheritdoc} */ public function save($pFilename = null) { $this->renderer->save($pFilename); } }