gpt4 book ai didi

php - PHP 中存储过程 MySQL 的调用计数结果

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

我试图从 php 中的存储过程中获取值,但我做不到。

我的存储过程:

DROP PROCEDURE IF EXISTS sp_table;
DELIMITER $$
CREATE PROCEDURE sp_table()
BEGIN
SELECT COUNT(*) FROM table;
END$$
DELIMITER ;

我的 PHP 代码:

$recordSet_table = $conn->query("CALL sp_table()");

print_r($recordSet_table)."<br><br>";

最佳答案

请尝试以下代码。

$sql = mysqli_query($connectionVariable,"CALL sp_table(@count)");

$result = mysqli_fetch_array($sql);

关于php - PHP 中存储过程 MySQL 的调用计数结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37151531/

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