gpt4 book ai didi

mysql - PHP MYSQL 1个月后动态增值

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

大家好,我正在使用 PHP 和 MYSQL 构建一个 Web 应用程序,我正在使用 PDO例如,我想在 1 个月后增加 MYSQL 中的一列。当用户在网站上注册时,成熟度的值加一星。

maturity default 1
after 1 month maturity = 2
after 2 months maturity = 3
after 3 months maturity = 4

if maturity == 12 it will stop increasing

等等。最多 12 个月,如果到期日达到 12,它将自动停止增加

我想每月增加该值而不按任何按钮

谢谢你们。我尝试通过比较用户在我的应用程序上注册时的日期和时间来创建相同的逻辑。谢谢

最佳答案

你应该使用脚本运行 php cron 作业或类似的东西

UPDATE user 
set maturity = maturity + 1
WHERE maturity < 13;

关于mysql - PHP MYSQL 1个月后动态增值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59244138/

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