从 PHP 调用 MySQL 存储过程
使用数据库时,存储过程提供了一种结构化且封装的方式来执行重复的数据库操作。如果您想将此功能集成到 PHP 应用程序中,可以利用 mysqli 扩展,该扩展支持调用 MySQL 数据库中的存储过程。
示例:
考虑以下场景:
您有一个名为 getTreeNodeName 的存储过程它接受一个 nid 参数并返回相应的节点名称。以下是可用于调用此存储过程的 PHP 代码:
<?php // Enable error reporting mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); // Connect to the MySQL database $connection = mysqli_connect("hostname", "user", "password", "db", "port"); // Create a prepared statement for the stored procedure $stmt = mysqli_prepare($connection, "CALL getTreeNodeName(?)"); // Bind the parameter to the statement mysqli_stmt_bind_param($stmt, "i", $nid); // Execute the prepared statement mysqli_stmt_execute($stmt); // Bind the result to variables mysqli_stmt_bind_result($stmt, $nodeName); // Fetch the result mysqli_stmt_fetch($stmt); // Print the result echo $nodeName; // Close the prepared statement and connection mysqli_stmt_close($stmt); mysqli_close($connection); ?>
注意:
如果您在使用 mysql_connect、mysql_query 和 mysql_fetch_array 函数时遇到问题,请考虑使用 mysqli 扩展,它可以提高安全性和性能。
以上是如何从 PHP 调用 MySQL 存储过程?的详细内容。更多信息请关注PHP中文网其他相关文章!