致命错误:找不到类"XSLTProcessor"
问题描述:
我正在使用XAMPP Server 1.7.7
I'm using XAMPP Server 1.7.7
在打开php文件时,我收到错误消息
While opening the php file, i receive the error
Fatal error: Class 'XSLTProcessor'
答
安装XSL扩展程序以获取该类.在Windows上php.ini中读取extension=php_xsl.dll
的行中取消注释(删除开头的';'),或者在大多数基于Linux的系统中读取apt-get install php5-xsl
的行,这很容易.对于自定义的PHP版本,请使用配置选项--with-xsl
(需要软件包libxslt1-dev).
Install the XSL extension to get that class. This might be as easy as uncommenting (remove the starting ';') on the line that reads extension=php_xsl.dll
in php.ini on Windows, or apt-get install php5-xsl
on most Linux-based systems. For custom builds of PHP, use configure option --with-xsl
(requires package libxslt1-dev).