我将我的 PHP 5.6.30 ( https://www.apachefriends.org/de/download.html ) 升级到 PHP 7.0 ( https://bitnami.com/stack/wamp/installer )
到目前为止一切正常,当我使用 MySQL 数据库时,它将我的页面的加载时间从 1.2 秒减少到约 300 毫秒。但现在我正在尝试使用以下简单脚本连接到 MSSQL 数据库,该脚本在我的旧安装(PHP 5.6)中运行良好:
<?php
//Use the machine name and instance if multiple instances are used
$server = 'Server-Adress';
$user = '';
$pass = '';
//Define Port
$port='Port=1433';
$database = 'Databasename';
$connection_string = "DRIVER={SQL Server};SERVER=$server;$port;DATABASE=$database";
$conn = odbc_connect($connection_string,$user,$pass);
if ($conn) {
echo "Connection established.";
} else{
die("Connection could not be established.");
}
$sql = "SELECT * FROM st3_200 WHERE identifier = 1";
$result = odbc_exec($conn,$sql);
// Get Data From Result
while ($data[] = odbc_fetch_array($result));
// Free Result
odbc_free_result($result);
// Close Connection
odbc_close($conn);
// Show data
print_r($data);
?>
但是现在我的日志中有一个错误,上面写着:
[Thu Dec 10 11:55:26.629956 2015] [:error] [pid 260:tid 968] [client ::1:63003] PHP 致命错误:未捕获的错误:调用 C:\Bitnami\ 中的未定义函数 odbc_connect() wampstack-7.0.0-0\apache2\htdocs\test\query.php:11\n堆栈跟踪:\n#0 {main}\n 抛出 C:\Bitnami\wampstack-7.0.0-0\apache2\htdocs \test\query.php 第 11 行
首先我想,我的 php.ini 缺少扩展名,所以我启用了“extension=php_pdo_odbc.dll”
与 5.6 版本中的 php.ini 的不同之处在于启用了扩展名:“extension=php_mssql.dll”。但我在新的 PHP 7.0.ini 中找不到它们
所以我的意图是 odbc 和 PHP 7 还没有现有的驱动程序吗?我在这里找到了一些 Linux 驱动程序: https ://aur.archlinux.org/packages/php7-odbc/
但我需要一些适合我的 Windows 环境的东西。
有没有人有同样的问题并且已经解决了?
感谢和问候多米