Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道为什么 mssql_connect 会很慢?PHP 在带有 FreeTDS 的 Linux 服务器上运行。我正在尝试连接到远程数据库。当我从 PHP 连接时,大约需要 3 秒,但如果我从 shell 使用 FreeTDS tsql 命令,它会在一秒钟内连接,因此它能够更快地连接。是否有我可以更改的设置或我应该使用不同的驱动程序?
您应该开始使用带有 MSSQL 驱动程序支持的 PDO。
更多信息:
http://php.net/manual/en/ref.pdo-dblib.php
还有一些例子:
通过php和linux使用pdo连接mssql