php执行多个存储过程
Posted xihong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php执行多个存储过程相关的知识,希望对你有一定的参考价值。
使用公共连接文件形式
include_once ‘inc/conni.php‘;
$result = mysqli_query($conni, "call proc_test()");
while( $row = mysqli_fetch_array($result) ){
var_dump($row);
}
mysqli_free_result($result);
mysqli_next_result($conni);
echo "11111";
$result = mysqli_query($conni, "call proc_test()");
while( $row = mysqli_fetch_array($result) ){
var_dump($row);
}
mysqli_free_result($result);
mysqli_next_result($conni);
以上是关于php执行多个存储过程的主要内容,如果未能解决你的问题,请参考以下文章