MS-SQL 和 PHP.INI - 如何在 IIS7 中的 PHP 中启用 mssql 支持
目前,我们在 Windows IIS7 上运行 PHP。 php.ini 的相关部分向我报告了这一点;
Configure Command .... "--without-mssql" "--without-pdo-mssql" ....
显然,这个 PHP 缺乏 mssql 支持。
怎样才能让 --without-mssql
短语从配置区域消失,从而在 php 编译中提供对 mssql 的支持?
到目前为止,这就是我们所做的。
我们启用 php_mssql.dll 作为 php 扩展。 我们确保 ntwdb.dll 与 php 位于同一文件夹中
我们的表演就此停止!
致命错误:调用...中未定义的函数 mssql_connect()
Currently, we are running PHP on Windows IIS7. And the relevant section from the php.ini reports this to me;
Configure Command .... "--without-mssql" "--without-pdo-mssql" ....
Clearly, this PHP lacks the mssql support.
What does it take for the --without-mssql
phrase to disappear from the configure area and thus the support for mssql is present in the php compile?
So far, this is what we have done.
we enabled the php_mssql.dll as a php extension.
we made sure that ntwdb.dll is in the same folder as php
Our show stops with this fataller!
Fatal error: Call to undefined function mssql_connect() in ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Extension=php_mssql.dll
Php Manuel php.ini 配置(安装 mssql)文件。
http://php.net/manual/en/mssql.installation.php
extension=php_mssql.dll
Php Manuel php.ini Config (install mssql) document.
http://php.net/manual/en/mssql.installation.php