简体   繁体   中英

Fatal error: Call to undefined function mssql_connect() or sqlsrv_connect() in xampp

I did all the changes given here but I still not connect SQL server on my php 5.6 version.

I tried with mssql_connect() and sqlsrv_connect() both.

I changed

; On windows: extension_dir = "ext"

to:

; On windows: extension_dir = "D:\\xampp\\php\\ext"

I have installed .dll s too. But result is still:

Fatal error: Call to undefined function sqlsrv_connect()

or

Fatal error: Call to undefined function mssql_connect()

can anyone help me??

mssql_connect() is no longer supported by PHP since PHP 7.0 and was depreciated in 5.3.

Create a phpinfo.php file:

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

?>

Open the page, and on the first page that's opened, third from the bottom, check if the registered streams contains 'sqlsrv':

Registered PHP Streams  php, file, glob, data, http, ftp, zip, compress.zlib, phar, sqlsrv

If it doesn't then you have to enable the module. Try uncomment this code that you changed: From:

; On windows: extension_dir = "D:\xampp\php\ext" "

To:

On windows: extension_dir = "D:\xampp\php\ext"

And let us know the outcome.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM