gpt4 book ai didi

php - 将 mysql 函数转换为 pdo

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:06 25 4
gpt4 key购买 nike

如何将我的 MySQL 函数转换为 PDO?我已通过 PDO 调用成功连接到我的数据库,但我的脚本仍在使用 MySQL 函数。

function query_basic($query)
{
$result = mysql_query($query);
if ($result == FALSE)
{
$msg = 'Invalid query : '.mysql_error()."\n";
echo $msg;
}
}

function query_numrows($query)
{
$result = mysql_query($query);
if ($result == FALSE)
{
$msg = 'Invalid query : '.mysql_error()."\n";
echo $msg;
}
return (mysql_num_rows($result));
}

function query_fetch_assoc($query)
{
$result = mysql_query($query);
if ($result == FALSE)
{
$msg = 'Invalid query : '.mysql_error()."\n";
echo $msg;
}
return (mysql_fetch_assoc($result));
}

最佳答案

你忘记了后面的分号:

$clientid = mysql_real_escape_string($_GET['id'])

正确:

$clientid = mysql_real_escape_string($_GET['id']);
^

关于php - 将 mysql 函数转换为 pdo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19458867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com