Fatal error: Class 'XSLTProcessor' not found

前端 未结 2 1615
礼貌的吻别
礼貌的吻别 2020-12-06 04:33

I\'m using XAMPP Server 1.7.7

While opening the php file, i receive the error

Fatal error: Class \'XSLTProcessor\' not found

2条回答
  •  时光取名叫无心
    2020-12-06 05:00

    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).

提交回复
热议问题