PHP连接MySQL报错 2002 No such file or directory 的解决方案

<?php
    $conn = mysql_connect('localhost', 'USER', 'PASSWORD');
    if(!$conn) {
        echo 'Error: ' . mysql_errno() . ' - ' . mysql_error();
    }
?>

使用 "127.0.0.1" 代替 "localhost" 来连接MySQL问题解决

参考资料:
PHP - MySQL connection not working: 2002 No such file or directory:https://stackoverflow.com/questions/1676688/php-mysql-connection-not-working-2002-no-such-file-or-directory

发表评论?

0 条评论。

发表评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据