Tuesday, May 20, 2014

Using DOMPDF in Yii


  1. Download dompdf : https://code.google.com/p/dompdf/
  2. Extract and copy dompdf folder to protected\vendor
  3. Add the following command to the top of controller that will using dompdf
Yii::import('application.vendor.*');
require_once('dompdf/dompdf_config.inc.php');
Yii::registerAutoloader('DOMPDF_autoload');
  1. Then we should can used like this
 public function actionDompdf() {
...
  $pdf = new DOMPDF();
...
 }

I think we can use the same way to including/import another library

No comments:

Post a Comment