search
HomeBackend DevelopmentPHP Tutorial求问以下方法为何不能得到返回值

  求问以下方法为何不能得到返回值?

由解,以下疑问!

public static function query($sql, $unbuffered = false) {
    $ret = self::$db->query($sql, $unbuffered);//该句成功时$ret为1  注::self::$db->query为mysql_query
    if ($unbuffered===true) {
      $cmd = trim(strtoupper(substr($sql, 0, strpos($sql, ' '))));
      if ($cmd === 'SELECT') { } 
      elseif ($cmd === 'UPDATE' || $cmd === 'DELETE') {
          $ret = self::$db->affected_rows();
      } 
      elseif ($cmd === 'INSERT') {
          $ret = self::$db->insert_id();//该处运行时证明执行了,返回的是int类型id号
      }
   }
   return $ret;//最终返回不是int类型id号
}

                           


------解决方案--------------------
那你得到的是什么?
------解决方案--------------------
无论是否有后续操作,至少会返回 $ret = self::$db->query($sql, $unbuffered); 的值
既然是:该句成功时$ret为1,而你说返回为空,显然是查询失败了
------解决方案--------------------
由 public function query($sql, $unbuffered = false) { ... 可知
要么 query 返回资源,要么 query 返回逻辑值
------解决方案--------------------
你执行的sql是什么?执行query时,$unbuffered是什么?
------解决方案--------------------
你用elseif  如果某个条件断了下面的程序就不会再走

 以上就是求问以下方法为何不能得到返回值的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Python 获取线程返回值的三种方式Python 获取线程返回值的三种方式Apr 13, 2023 am 10:43 AM

提到线程,你的大脑应该有这样的印象:我们可以控制它何时开始,却无法控制它何时结束,那么如何获取线程的返回值呢?今天就分享一下自己的一些做法。方法一:使用全局变量的列表,来保存返回值ret_values = [] def thread_func(*args): ... value = ... ret_values.append(value)选择列表的一个原因是:列表的 append() 方法是线程安全的,CPython 中,GIL 防止对它们的并发访问。如果你使用自定义的数据结构,在并

scanf返回值被忽略怎么解决scanf返回值被忽略怎么解决Nov 14, 2023 am 10:01 AM

scanf返回值被忽略的解决办法有检查scanf的返回值、清除输入缓冲区和使用fgets替代scanf等。详细介绍:1、检查scanf的返回值,应该始终检查scanf函数的返回值,scanf函数的返回值是成功读取的参数的数量,如果返回值与期望的不一致,就意味着输入有误;2、清除输入缓冲区,在使用scanf函数时,如果输入的数据与期望的格式不匹配,将导致输入缓冲区中的数据等等。

使用java的Math.min()函数比较两个数值的大小并返回较小值使用java的Math.min()函数比较两个数值的大小并返回较小值Jul 25, 2023 pm 01:21 PM

使用Java的Math.min()函数比较两个数值的大小并返回较小值在开发Java应用程序时,有时我们需要比较两个数值的大小,并返回较小的那个数。Java提供了Math.min()函数来实现这个功能。Math.min()函数是JavaMath类的一个静态方法,它用于比较两个数值的大小并返回较小的那个数。它的语法如下:publicstaticintmi

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

Golang 函数可以返回多个值吗?Golang 函数可以返回多个值吗?Apr 13, 2024 pm 02:42 PM

是的,Go函数可以通过返回一个元组来返回多个值,元组是一种不可变的值,可以包含不同类型的数据。

C++ 函数指针作为函数返回值C++ 函数指针作为函数返回值Apr 14, 2024 am 08:30 AM

函数指针可以作为函数返回值,允许我们在运行时确定要调用的函数。语法为:returntype(*function_name)(param1,param2,...)。优点包括动态绑定和回调机制,使我们可以根据需要调整函数调用。

C++ 函数返回值类型的常见类型C++ 函数返回值类型的常见类型Apr 12, 2024 pm 05:36 PM

C++函数返回类型包括:void(无返回值)、基本类型(整数、浮点数、字符和布尔值)、指针、引用、类和结构。选择时,应考虑功能、效率和接口。如计算阶乘的factorial函数,返回整数类型以满足功能需求和避免额外操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools