Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 mysqli 从数据库中获取某些数据。我正在使用的查询已设置为仅从数据库返回一行。有没有办法在不使用 while 循环的情况下获取该行的值?我知道如果返回的行不止一行,while 循环是好的,但如果 while 循环不是必需的,我想避免它,因为不必要的代码是不好的编程。
是的 - 您可以使用:
$row = $result->fetch_array();
仅将第一行作为数组返回。