mysqli + xdebug breakpoint after closing statement result in many warnings

前端 未结 6 2061
生来不讨喜
生来不讨喜 2020-11-30 07:24

I have a piece of code like this:

$conn = new mysqli($host, $username, $passwd, $dbname);

...

$stmt = $conn->prepare(\'SELECT ...\');
$stmt->bind_par         


        
6条回答
  •  伪装坚强ぢ
    2020-11-30 08:10

    FWIW, this was a bug in PHP (https://bugs.php.net/bug.php?id=67348&edit=1), which should be fixed for PHP 7.4: https://github.com/php/php-src/commit/579562176b71820ad49d43b2c841642fef12fe57

提交回复
热议问题