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.
我的代码是:
$start = time(); $sqli = new mysqli("localhost", "root", "mySelectedPass", "mydb"); echo time() - $start;
结果:2。
有什么问题?
我正在使用 XAMPP 1.8.1 和 Windows 8。
答:使用 127.0.0.1 而不是 localhost :)
您正在测试连接到服务器并运行查询所需的时间,而在您的 SQL 管理工具中,您只测试查询执行时间。
您可能有一些错误配置,导致连接到数据库服务器的速度非常慢。大多数应用程序应该使用连接池来避免每次请求都必须重新连接到数据库。