When I close an opened mysqli DB connection I get lots of errors.
This is the script stripped to a minimum to reproduce the error:
<?php
$erl = error_reporting(E_ALL);
$dbh = new mysqli( 'localhost', 'video', '******', 'recordings');
$dbh->close();
$x=1;
$x=2;
?>
I get a bunch of errors (see below) when I execute the line with “$dbh->close()” and on ALL SUBSEQUENT LINES until the script terminates.
To be exact: I get these errors every time the script stops due to a breakpoint or in single step.
The line number shown is NOT the line just executed but the line number where the cursor sits AFTER stopping.
The database connection is established and is working. (The real script does what it should do)
I only get these errors when debugging.
No errors when running on the command line.
No errors when running inside Komodo with “Run without debugging” or when the script doesn’t have breakpoints.
If the script has a breakpoint (at or after the close() statement) the first error is thrown when I reach that breakpoint.
Here are the errors I get.
PHP Warning: main(): Property access is not allowed yet in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Property access is not allowed yet in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Property access is not allowed yet in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Property access is not allowed yet in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0
PHP Warning: main(): Couldn't fetch mysqli in /home/livespotting/lsm_encoding-master/htdocs/test.php on line 6
PHP Stack trace:
PHP 1. {main}() /home/livespotting/lsm_encoding-master/htdocs/test.php:0