php7.0以上版本mysql数据库连接方法demo代码
Fatal error: Uncaught Error: Call to undefined function mysql_connect()如果出现上面的问题,可能是由于php版本问题导致的,mysql_connect()在php5.x版本可以实用,在php7.x版本中需要使用以下的代码:<?phpheader("Content-type: text/html; charset=utf-8");$con = mysqli_connect("127.0.0.1"
Fatal error: Uncaught Error: Call to undefined function mysql_connect()
如果出现上面的问题,可能是由于php版本问题导致的,mysql_connect()在php5.x版本可以实用,在php7.x版本中需要使用以下的代码:
<?php
header("Content-type: text/html; charset=utf-8");
$con = mysqli_connect("127.0.0.1","用户名","密码");
if(!$con)
{
die('Could not connect: ' . mysqli_connect_error());
}else{
echo '数据库连接成功!';
}
mysqli_select_db($con,"数据库");
$sitename = '';
$siteurl = '';
function replaceSpecialChar($strParam){
$regex = "/\/|\~|\!|\@|\#|\\$|\%|\^|\&|\*|\[|\]|\_|\+|\{|\}|\:|\<|\>|\?|\[|\]|\\/|\;|\'|\`|\-|\=|\\\|\|/";
return preg_replace($regex,"",$strParam);
}
?>