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.
我正在使用 Mysql 和 PHP,但从存储过程调用中获取结果时遇到问题。使用mysql_num_rows()它不起作用,因为我总是得到1(布尔值),所以我问是否有另一种方法来检索结果集。
mysql_num_rows()
1
代码:
$ris=mysql_query("CALL search_person('$_POST[name]', '$_POST[surname]', '$_POST[adress]', '$_POST[telephone]')") or die(mysql_error());
将过程更改为函数并返回
SELECT ROW_COUNT();
作为函数到 php 脚本的结果。