简体   繁体   中英

Parameter must be an array or an object that implements Countable

I have some strange error in PHPmyadmin.

Warning in./libraries/pmd_common.php#405 count(): Parameter must be an array or an object that implements Countable

Backtrace

./db_designer.php#102: PMA_getLoadingPage(string 'DB_Name')

How to fix it?

Use sudo nano +405 /usr/share/phpmyadmin/libraries/pmd_common.php and replace if (count($min_page_no[0])) { with if (count((array)$min_page_no[0])) {

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM