嗨Pan??kaj,
???????Cakephp2.3.x的文件夹名称将“供应商”更改为“供应商”.这就是为什么您得到错误.
Cakephp 1.3.X:我们在PdfComponent中使用
//包含类文件并创建Html2ps实例
App::import('vendor', 'Html2PsConfig', array('file' => 'html2ps'.DS.'config.inc.php'));
App::import('vendor', 'Html2Ps', array('file' => 'html2ps'.DS.'pipeline.factory.class.php'));
parse_config_file(APP .'vendors'. DS .'html2ps'. DS .'html2ps.config');
Cakephp 2.3.X:在PdfComponent中,您必须更改与以下代码相同的代码.
//包含类文件并创建Html2ps实例
App::import('Vendor', 'Html2PsConfig', array('file' => 'html2ps'.DS.'config.inc.php'));
App::import('Vendor', 'Html2Ps', array('file' => 'html2ps'.DS.'pipeline.factory.class.php'));
parse_config_file(APP .'Vendor'. DS .'html2ps'. DS .'html2ps.config');
试试这个可能对您有帮助.. ?