Home >php教程 >php手册 >PHP连接Sql数据库的相关方法

PHP连接Sql数据库的相关方法

WBOY
WBOYOriginal
2016-06-13 11:08:051320browse

我们在用最近,有人问我,在使用PHP开发时,想用php连接sql server数据库。我告诉他们,可以用mssql_connect($host,$username,$password)的方法来实现PHP连接Sql数据库。

其实,到网上一搜,就可以找到这个函数,很多用它。但是,朋友却反馈,系统没有定义mssql_connect(),这就奇怪了,我一直都是这么用的,我怀疑他PHP版本太低不支持,他告诉我是php5.14。本版不存在问题。

问题在哪呢?后来试过各种方法,都解决不了。

后来,突然,想起PHP的功能都是由PHP.INI配置的,会不会没有开启对sql server的支持呢?一看,果然没有。

PHP连接Sql数据库的解决方法:

1、在apache2的目录下找到php.ini,并打开。

2、找到“;extension=php_mssql.dll”,去掉前面的“;”,保存

3、重启apache服务(注意一定要重启,很多经常忘记,而不知道原因)

再用mssql_connect()连接sql server就可以彻底实现PHP连接Sql数据库。


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn