且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

PHP扩展无法在Windows Azure上运行

更新时间:2023-02-22 19:27:40

我已经自行解决了此问题.实际上,解决方案非常简单...

I have already solved this problem on my own. The solution is quite simpel actually...

在应用设置"中添加以下内容:左侧为PHP_EXTENSIONS.bin/php_xsl.dll在右侧.PHP_EXTENSIONS = bin/php_xsl.dll

In 'App Settings' add this: PHP_EXTENSIONS on the left side. bin/php_xsl.dll on the right side. PHP_EXTENSIONS = bin/php_xsl.dll

因此,它需要正斜杠而不是反斜杠.

So it needs the forward slash instead of the backslash.

请注意,XSL dll文件不适用于任何PHP版本.当前版本仅适用于5.4,并且对于每个php版本,您都可以找到另一个dll文件.据我目前所知,5.5没有xsl dll.就像pdo_sqlsrv.dll一样.

Please notice that the XSL dll files are not working on any PHP version. The current version is only working on 5.4 and for every php version you can find another dll-file. 5.5 does not have it's xsl dll as far as I know for now. Just as pdo_sqlsrv.dll btw.