gpt4 book ai didi

php - 检查数据库表滚动计数是否已更改

转载 作者:行者123 更新时间:2023-11-29 17:56:08 25 4
gpt4 key购买 nike

我正在尝试检查 MySQL 数据库中表的行数是否已更改。我已检查数据库的代码,但不存储先前计数的记录,因此我可以比较两者。

function showapp_count(){

global $wpdb;

$lastappcount = '';

$app_count = $wpdb->get_var("SELECT COUNT(*) FROM cb_apps" );

if($app_count !== $lastappcount) {

$lastappcount = $app_count;

echo $echoed = $app_count;

} else{

echo 'roll count has changed';
}

}

最佳答案

尝试这个解决方案。

function showapp_count(){

global $wpdb;

if (isset($_SESSION['last_count'])) {
$lastappcount = $_SESSION['last_count'];
} else {
session_start();
$_SESSION['last_count'] = 0;
}

$app_count = $wpdb->get_var("SELECT COUNT(*) FROM cb_apps" );

if($app_count !== $lastappcount) {
$_SESSION['last_count'] = $app_count;
echo 'Current count is '.$_SESSION['last_count'];
} else{
echo "roll count hasn't changed";
}
}

关于php - 检查数据库表滚动计数是否已更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48812398/

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