gpt4 book ai didi

php - 如何选择 MAX(updateTag)

转载 作者:行者123 更新时间:2023-11-29 02:28:47 24 4
gpt4 key购买 nike

我使用时间戳的 updateTag 列创建 digiCardPass。我试试:

   $query1 = mysql_query("select MAX(updateTag) as updateTag from digiCardPass");
$row1 = mysql_fetch_array($query1);
$updateTag = $row1['updateTag'];
error_log("max updateTag:",$updateTag,0);

但是我无法在 php_error.log 中得到这个错误:

[03-May-2013 12:46:06 Asia/Phnom_Penh] PHP Notice: A non well formed numeric value encountered in /Applications/MAMP/htdocs/passesWebserver/createPass/index.php on line 42 [03-May-2013 12:46:06 Asia/Phnom_Penh] max updateTag:

   //line 42: error_log("max updateTag:",$updateTag,0);

如何解决这个问题?

最佳答案

您的 error_log 语句不正确,导致出现错误消息。您的文本和要写入日志的变量之间有一个逗号,因此它将 $updateTag 视为 error_log 命令的第二个参数。

尝试:

error_log("max updateTag: " . $updateTag, 0);

去掉你的警告并在日志中写入$updateTag的内容

关于php - 如何选择 MAX(updateTag),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16352469/

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