UNIX_TIMESTAMP 函数 MySQL

发布于 2024-11-08 21:18:32 字数 301 浏览 0 评论 0原文

知道为什么这行不通吗?我有一种感觉,这是我给它的行名称。 它不回显任何内容

$result = mysql_query("SELECT UNIX_TIMESTAMP(datetime) FROM voters WHERE ip='$ip'") or die(mysql_error());

while($row = mysql_fetch_array($result)) {
   $unixtimestamp = $row['UNIX_TIMESTAMP(datetime)'];
   echo $unixtimestamp;
}

Any idea why this wont work? I have a feeling its the row name I have given it.
It doesnt echo anything

$result = mysql_query("SELECT UNIX_TIMESTAMP(datetime) FROM voters WHERE ip='$ip'") or die(mysql_error());

while($row = mysql_fetch_array($result)) {
   $unixtimestamp = $row['UNIX_TIMESTAMP(datetime)'];
   echo $unixtimestamp;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彼岸花ソ最美的依靠 2024-11-15 21:18:32

没关系,日期时间不是保留字,但我仍然强烈建议不要使用它并选择更好的列名称。 :),但下面的内容仍然有效。

给列起别名,使得以后更容易将其从数组中取出:

$result = mysql_query("SELECT UNIX_TIMESTAMP(`datetime`) as voted_on FROM voters WHERE ip='$ip'") or die(mysql_error());

while($row = mysql_fetch_array($result)) {
    $unixtimestamp = $row['voted_on'];
    echo $unixtimestamp;
}

应该可以。

Nevermind, datetime is not a reserved word, but I still highly recommend not using it and choosing a better column name. :), but the below still stands.

Alias the column, makes pulling it out in the array easier later on:

$result = mysql_query("SELECT UNIX_TIMESTAMP(`datetime`) as voted_on FROM voters WHERE ip='$ip'") or die(mysql_error());

while($row = mysql_fetch_array($result)) {
    $unixtimestamp = $row['voted_on'];
    echo $unixtimestamp;
}

Should work.

蹲在坟头点根烟 2024-11-15 21:18:32

首先,我建议不要使用 datetime 作为 mysql 中的列名。

如果我有一个名为 vote_time 的 DATETIME 字段,我会这样做:

SELECT UNIX_TIMESTAMP(vote_time) AS unix_vote_time FROM voters WHERE ip='$ip'

然后您可以通过以下方式访问它

$unixtimestamp = $row['unix_vote_time'];

First, I'd recommend against using datetime as a column name in mysql.

If I had a DATETIME field called vote_time, I'd do it like this:

SELECT UNIX_TIMESTAMP(vote_time) AS unix_vote_time FROM voters WHERE ip='$ip'

Then you'd access it via

$unixtimestamp = $row['unix_vote_time'];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文