之前用connect方法连接数据库都能成功,现在失败了。代码如下:
<?php
$con = mysql_connect("localhost","root","code");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_close($con);
?>
我的Ubuntu是16版本的,PHP是7.0,最后发现PHP7已经抛弃了connect方法,改用了PDO与mysqli。我换成了mysqli方法就成功了,具体的操作可以看下文教程:
PDO:
http://www.runoob.com/php/php-pdo.html
Mysqli:
http://www.runoob.com/php/php-ref-mysqli.html