为什么php调用存储过程返回多个结果集,总要多出一个结果集
比如
$db->query("SET NAMES UTF8");
if($db->real_query("call sp_test()")){
do{
echo 'bp';
if($result = $db->store_result()){
while ($row = $result->fetch_assoc()){
array_push($rows, $row);
}
$result->close();
}
}while($db->next_result());
}
$db->close();
你会发现假设你返回1个结果集,会打出2个bp,2个结果集就会echo出3个bp,但如果不写存储,直接写语句,就正常,不会多出一个,求大神指点迷津!
回复讨论(解决方案)
这不是很正常吗?不然你要 if($result = $db->store_result()){ 干什么?
这不是很正常吗?不然你要 if($result = $db->store_result()){ 干什么?
您好,可是直接写语句在php里不会多出一个,比如select 1;select 2;
他就打出2个bp,这是为什么呢,存储过程里也写以上2句就会打出3个
php 的数据库函数不支持形如 select 1;select 2; 这样的查询,所以不能作为参照系
do{ if($result = $db->store_result()){ } }while($db->next_result());
不过在没有改正之前,你还是必须这么做
php 的数据库函数不支持形如 select 1;select 2; 这样的查询,所以不能作为参照系
do{ if($result = $db->store_result()){ } }while($db->next_result());
不过在没有改正之前,你还是必须这么做
非常感谢
因为你echo写在了 if($result = $db->store_result()){ 的前面,而有没有结果是要看 if($result = $db->store_result()){ 的判断结果才知道,所以肯定有2个结果的时候, if要判断3次,也就是你说的3次bp
其实简单说,你的困惑在于
$i = 1;$max = 2;while(true) { echo "A"; // 这里肯定会输出3个A if($i > $max) { break; } $i++; }
php 的数据库函数不支持形如 select 1;select 2; 这样的查询,所以不能作为参照系
do{ if($result = $db->store_result()){ } }while($db->next_result());
不过在没有改正之前,你还是必须这么做
大侠,不好意思,我还想问下,$result = $db->store_result(),这句话到底是什么意思,这是赋值运算,怎么就能返回bool值呢?
$db->store_result() 返回一个查询结果资源
当没有了的时候,返回的就是空了(null)
$db->store_result() 返回一个查询结果资源
当没有了的时候,返回的就是空了(null)
那$result =null 这个返回的是false吗?
还真是false,一个赋值表达式都能返回false,php真神奇
是我理解错了,运来if里面判断的仅仅是$result的值!!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
