gpt4 book ai didi

php - 为什么要使用 num_rows

转载 作者:行者123 更新时间:2023-11-28 23:17:32 25 4
gpt4 key购买 nike

每当我需要数据库中的东西时,比方说当用户登录时,我需要验证并获取用户数据,我会这样做:

  1. 检查用户是否存在 num_rows
  2. 使用fetch_array获取用户数据

所以我的问题如下:

  1. 我在想,难道没有更简单的方法来完成这一切。就像只使​​用 fetch_array 一样,如果它不存在,它将返回 false 或它所做的任何事情。
  2. 如果有 1 条语句的方法可以做到这一点,您需要 num_rows 做什么?

最佳答案

我知道这不是完美的答案,但我通常这样做

$link = mysql_connect("localhost", "mysql_user", "mysql_password");
mysql_select_db("database", $link);
$num_rows = mysql_num_rows(mysql_query("SELECT * FROM table1", $link));
echo "$num_rows Rows\n";

关于php - 为什么要使用 num_rows,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43177410/

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