diff --git a/src/Dompdf.php b/src/Dompdf.php index 70257b16c..8938258f3 100644 --- a/src/Dompdf.php +++ b/src/Dompdf.php @@ -430,13 +430,6 @@ public function loadHtml($str, $encoding = null) $str = substr($str, 3); } - // Parse embedded php, first-pass - if ($this->options->isPhpEnabled()) { - ob_start(); - eval("?" . ">$str"); - $str = ob_get_clean(); - } - // if the document contains non utf-8 with a utf-8 meta tag chars and was // detected as utf-8 by mbstring, problems could happen. // http://devzone.zend.com/article/8855