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执行多个存储过程的主要内容,如果未能解决你的问题,请参考以下文章

使用 php PDO 调用多个存储过程

sqlserver执行多个存储过程

从 php 执行时 SQL Server 存储过程错误

如何使用多个输出参数执行存储过程?

mysql存储过程详解及基于PHP使用实例

PHP Apache 在执行存储过程时崩溃