有什么方法可以获取使用 mysqli 准备好的语句返回的行数吗?
想知道是否有办法使用 mysqli 准备好的语句获取查询返回的行数,类似于
mysql_num_rows($query);
Wondering if there is a way to get the amount of rows returned from a query using mysqli prepared statements, sort of like
mysql_num_rows($query);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您正在做类似的事情:
行数
您可以使用查看 手册。
Presuming you're doing something like:
You can get the number of rows with
See the manual.
使用此代码:
Use this code: