嗨,我需要解决此问题的帮助,我刚刚在本地计算机上托管了一个wordpress网站,因此可以对其进行更改,然后将更新的文件推送到实时网站,我目前遇到此错误:警告:count():参数必须是在第629行的C:\ xampp \ htdocs \ wordpress \ wp-includes \ theme.php中实现Countable的数组或对象,我不知道如何解决它,请预先提供帮助和感谢,
答案 0 :(得分:5)
如果您使用的是WordPress,请确保the_content位于循环内。那是我的问题。
<?php
while ( have_posts() ) : the_post();
the_content();
endwhile; // End of the loop.
?>
答案 1 :(得分:1)
Duplicate of phpmyadmin - count(): Parameter must be an array or an object that implements Countable
该页面上的可接受答案如下。
编辑文件/usr/share/phpmyadmin/libraries/sql.lib.php:
C D E
a 4 7.0 1.0 5.0
a 5 3.0 4.0 5.5
b 5 8.0 3.0 3.0
c 4 9.0 5.0 6.0
f 4 3.0 0.0 4.0
替换:sudo nano /usr/share/phpmyadmin/libraries/sql.lib.php
使用:count($analyzed_sql_results['select_expr'] == 1)
重新启动服务器
(count($analyzed_sql_results['select_expr']) == 1)
答案 2 :(得分:0)
if($result->num_rows){
$row = $result->fetch_array();
//use this instead of count()