我正在尝试使用 Xampp 将我的 SQL 服务器与 PHP 连接起来.我已经在 ext 文件夹中上传了 dll 文件,但我无法连接它.我的 PHP 版本是 7.2.6.上传的 dll 文件是 - php_pdo_sqlsrv_72_ts.dll、php_sqlsrv_72_ts.dll.我已经编写了这段代码来连接我的 SQL 数据库和 PHP-
I am trying to connect my SQL server with PHP using Xampp. I have already uploaded dll files in the ext folder but I am unable to connect it. My PHP version is 7.2.6. Uploaded dll files are - php_pdo_sqlsrv_72_ts.dll, php_sqlsrv_72_ts.dll. I have written this code to connect my SQL database with PHP-
<?php
$serverName = "INDO-SERVSQLEXPRESS,1443";
$uid = "sa";
$pwd = "XXXXXX";
$databaseName = "web";
$connectionInfo = array("UID" => $uid, "PWD" => $pwd, "Database"=>$databaseName);
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn )
{
echo "Connection established.
";
}
else
{
echo "Connection could not be established.
";
die( print_r( sqlsrv_errors(), true));
}
sqlsrv_close( $conn);
?>
我在尝试这个时遇到了这个错误-
I am getting this error when I had tried this-
致命错误:未捕获错误:调用未定义函数C:xampphtdocsiometricdb.php:7 中的 sqlsrv_connect() 堆栈跟踪:#0{main} 在第 7 行的 C:xampphtdocsiometricdb.php 中抛出.
Fatal error: Uncaught Error: Call to undefined function sqlsrv_connect() in C:xampphtdocsiometricdb.php:7 Stack trace: #0 {main} thrown in C:xampphtdocsiometricdb.php on line 7.
任何人都知道我做错了什么或如何连接数据库.
Anyone has an idea where I am doing wrong or how to connect with the database.
可以为 SQL Server 安装 PHP 驱动程序(sqlsrv
和/或 pdo_sqlsrv
PHP 扩展)遵循以下步骤:
Installation of PHP Driver for SQL Server (sqlsrv
and/or pdo_sqlsrv
PHP extensions) can be done following the next steps:
使用 <?php phpinfo();?>
检查配置.应该有一个名称为 pdo_sqlsrv
(如果您使用 PDO)和/或 sqlsrv
(没有 PDO)的部分.
Check the configuration with <?php phpinfo();?>
. There should be a section with name pdo_sqlsrv
(if you use PDO) and/or sqlsrv
(without PDO).
这篇关于如何使用xampp将sql server与php连接起来?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!