Ich habe das Backup in eine Tabelle hochgeladen und die folgende Tabelle geöffnet:
Warning in ./libraries/sql.lib.php#601
count(): Parameter must be an array or an object that implements Countable
Backtrace
./libraries/sql.lib.php#2038: PMA_isRememberSortingOrder(array)
./libraries/sql.lib.php#1984: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'alternativegirls',
string 'tgp_photo',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `tgp_photo`',
NULL,
NULL,
)
./sql.php#216: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'alternativegirls',
string 'tgp_photo',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `tgp_photo`',
NULL,
NULL,
)
./index.php#53: include(./sql.php)
Innerhalb von phpMyAdmin ...
PHP ist 7.2, der Server ist Ubuntu 16.04, gestern installiert.
Auf der Suche habe ich gesehen, dass einige diesen Fehler in ihrem Code haben, aber ich habe niemanden gefunden, der ihn in phpMyAdmin erhalten hat ...
Was sollte ich tun? Ist das mein Fehler? Ein phpmyadmin Fehler? Update warten? Ich gehe zurück zu PHP 7.1?
if ( count($articles)){..}
in CodeIgniter , sollten sie verwenden:if ( count((array)$articles)){..}
wie hier