PHP连接sql server 2005环境配置及问题解决,sqlserver
一、Windows下PHP连接SQLServer 2005
设定:安装的Windows操作系统(Win7 或XP均可,其他系统暂未测试),在C盘下;PHP的相关文件位于c:/PHP下面,其配置文件php.ini位于C:\Windows下面。
连接前配置系统:
1、检查文件 php\ntwdblib.dll, 默认PHP的安装目录下面有一个,不能连接再替换。
下载正确版本的 ntwdblib.dll (2000.80.194.0)
2.配置php
a、打开php.in将extension=php_mssql.dll的注释符号去掉。
b、打开php.in将mssql.secure_connection = Off改为on。
c、将php_mssql.dll拷贝到php.in中extension_dir 指定的目录或者系统system32目录下, 位于/PHP/ext。
以上步骤完成后需要重启apache。
注意:实际使用中发现 如果通过php压缩文件手工安装php到iis下,必须重启机器而不仅仅是iis。
3.配置sqlserver
a. 运行 SQL Server 配置管理器:SQL Server Configuration Manager,打开协议 Protocols
b. 允许命名管道 "named pipes" 和 "tcp/ip"
c. 右键点击 "tcp/ip",打开属性 Properties 标签 "IP 地址"
d. 在 TCP 动态端口 "TCP Dynamic Ports" 填入 1433,注意分配正确的IP地址。
e. 重启 SQL Server
4.使用以下方式连接MS SQL Server 2005:
代码如下,另存为test.php:
//链接数据库
$conn=mssql_connect('localhost','sa','123456');
mssql_select_db('gu_dde',$conn);
//query语句
$Query="select * from dde_top";
$AdminResult=mssql_query($Query);
//输出结果
$Num=mssql_num_rows($AdminResult);
for($i=0;$i
输入 http://127.0.0.1/test.php
进行访问:
5.FAQ常见问题:
1报错:
Fatal error: Call to undefined function mssql_connect()
解决:
使用MSSQL_系列函数
要使用这两种都需要在php.ini进行设定:
(1)允许 DCOM,需要将php.ini中的 ;com.allow_dcom=TRUE前的分号";"去掉。
(2)使用MSSQL扩展,需要php.ini中的 ;extension=php_mssql.dll前的分号";"去掉。(关键)
(3)确认extension_dir为正确路径,以本机为例:extension_dir = "c:\php\ext"。
(4)如果仍然机器报错说找不到c:\php\ext\php_mssql.dll但明明存在这个文件。
解决方法:将php_mssql.dll,ntwdblib.dll拷贝到系统目录\system32下重启测试。。
(注:上面两个dll文件不在相同目录下,我的为c:\php\ext\php_mssql.dll;c:\php\ntwdblib.dll)
另外设置好了后记得重启服务器哦。
已经启用是否选择是
确认服务器正确之后,再确认ntwdblib.dll 文件位置是否放到了 c:\windows\system32下
同时要保证ntwdblib.dll 这个文件的版本和sqlserver的版本对应:
下面是对应关系:
1.ntwdblib.dll 版本为 2000.2.8.0 是 对应 SqlServer2000(这个是网络查资料和猜测,没装2000)
2.ntwdblib.dll 版本为 2000.80.194.0 是 对应 SqlServer2005(这个是用实验证明可以用,本人就是用笔记本装了2005)
3.ntwdblib.dll 版本为 2000.80.2039 是 对应 SqlServer2008(这个是猜测没有装2008)
6.其他问题:
如果php apache Sql Server2005都在同一台机器上,访问基本没有问题了。
如果Sql Server2005和php机器是分离的,需要确认ping sqlserver所在机器的机器名能通,如过不通,修改php所在机器的\system32\drivers\etc下的hosts文件,增加一行 sqlserver所在机器的机器ip sqlserver所在机器的机器名字。
如果还是无法访问,需要确认php所在的机器有无暗转mdac。要不索性安装一下sqlserver的客户端好了。
解决问题如下:
1.下载两个文件 php_mssql.dll 和 ntwdblib.dll
php_mssql.dll 如果这个没有复制到c:\windows\system32下,就很容易出现
ntwdblib2093.dll 这个文件要注意版本,不然后面搞得很郁闷.
二、Linux下php连接sql server 2005
1、首先根据需要安装LAMP环境中的除php外其他组件。 在Linux中使用freetds连接MS SQL 安装freetds
./configure --prefix=/usr/local/freetds --with-tdsver=8.0 --enable-msdblib --enable-dbmfix --with-gnu-ld --enable-shared --enable-static
make
make install
重要提示一:这一步需要注意的是--with-tdsver
2、配置freetds
server2005对应的tds version是7.2(貌似网上能查到的都写8.0)
配置/usr/local/freetds/etc/freetds.conf
# A typical Microsoft server
[1.1.1.21]
host = 1.1.1.21
port = 1433
tds version = 7.0
重要提示:在调用mssql_connect函数时,需要注意的是,其第一个参数应该是[1.1.1.21](即在freetds.conf里的配置),而不是sql server的IP!
3、编译安装php
编译php的配置项根据需要设置,但是必须要加入的配置项为:--with-mssql=/usr/local/freetds/
注意:如果编译php加载freetds 时候出现不能找到freetds目录,则需要以下操作(官方的Faq):
touch /usr/local/freetds/include/tds.h
touch /usr/local/freetds/lib/libtds.a
4、安装完php以后,所有准备工作都完成了,下面就可以重启apache,就可以用php调用sql server 2005了。
提示什么?
如果在Windows下使用php链接SQL Server,按照正确的常规配置会出现以下问题
PHP去除了php.ini中;extension=php_mssql.dll前面的注释后Apache仍然无法加载php_mssql.dll。
在PHP中使用mssql_connect()函数时报以下错误
Call to undefined function mssql_connect()
错误日志中记录的内容为PHP Startup: Unable to load dynamic library 'D:\\WebService\\php-5.2.8-Win32\\ext\\php_mssql.dll'
网上查找资料后发现出现这个问题其实是少了一个NTwdblib.dll,而这个动态连接库文件是是SQL SERVER客户端连接库,如果本机安装有SQL Server2000/2005的客户端就不会出现这个问题。找到一个NTwdblib.dll文件后放置到System32文件夹中即可解决这个问题。
ntwdblib.dll文件
1.Copy到php安装目录和c:\windows\system32目录下,停掉IIS或Apache。
2. 覆盖 apache2.2.6\bin ntwdblib.dll
3. 覆盖 php5.2.5 ntwdblib.dll
假设:
sql server2005是 B机器
需要连接的机器是 A机器
ntwdblib.dll是远程 sql server的安装之后产生的文件,你需要把这个文件拷贝到A机器上的以上目录覆盖、
4.修改php配置文件在PHP.ini文件里改mssql.secure_connection = On,对于链接局域网的服务器这种配置是不正确的,应该是mssql.secure_connection = Off

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
