用PHPstorm连接MySQL数据库,显示有错误(function my_connect deprecated)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHPstorm连接MySQL数据库,显示有错误(function my_connect deprecated)相关的知识,希望对你有一定的参考价值。

参考技术A phpstorm连接mysql数据库,显示有错误(function
my_connect
deprecated)
info.php在CentOS
64位虚拟机运行的时候,其中MySQL版本那一栏是空白信息。我查看了info.php源码,开始以为是MySQL数据库的用户名和密码填写错了,仔细检查没有错误之后,便查看了Apache的error_log,得到如下消息:
mysql_connect():
No
such
file
or
directory
在网上查了一下,说是本地socket设置与默认的不一样,导

怎么在phpstorm中读取excel并且导入到数据库

参考技术A 把excel 改为 cvs文件
<?
//连接数据库文件
$connect=mysql_connect("localhost","admin","admin") or die("链接数据库失败!");
//连接数据库(test)
mysql_select_db("testcg",$connect) or die (mysql_error());
$temp=file("test.csv");//连接EXCEL文件,格式为了.csv
for ($i=0;$i <count($temp);$i++)

$string=explode(",",$temp[$i]);//通过循环得到EXCEL文件中每行记录的值
//将EXCEL文件中每行记录的值插入到数据库中
$q="insert into ceshi (name,num,dom) values('$string[0]','$string[1]','$string[2]');";
mysql_query($q) or die (mysql_error());

if (!mysql_error());

echo " 成功导入数据!";

echo $string[4]."\n";
unset($string);

?>

以上是关于用PHPstorm连接MySQL数据库,显示有错误(function my_connect deprecated)的主要内容,如果未能解决你的问题,请参考以下文章

phpstorm中的mysql怎么用

phpstorm No data sources are configured to run this SQL and provide advanced code assistanc

将 XAMPP SQL 数据库添加到 PhpStorm 会导致被拒绝的详细信息错误

phpstorm中mysql驱动怎么安装

php在连接mysql时为啥会包这样的错误?

用phpstorm软件,写了简单的PHP代码,用浏览器打开怎么显示错误??如下图