mysql dump:count()参数必须是实现可计数的对象的数组

r8uurelv  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(344)

Mysql error: backtrace./libraries/display_export.lib.php#380:pma_plugingetoptions(string'export',array,)./libraries/display_export.lib.php#883:pma_gethtmlforexportoptions format(array)。/libraries/display_export.inc.php#74:pma_gethtmlforexportoptions(string'server',
字符串“”,字符串“”,字符串“全选/全选”
my_database my_database phpmyadmin',string“”,array,string“”,)./server_export.php#30:需要_once(./libraries/display_export.inc.php)

j5fpnvbx

j5fpnvbx1#

phpmyadmin的库尝试计算一些参数。在532行,我在这个路径中找到了这个代码
文件名:$/usr/share/phpmyadmin/libraries/plugin\u interface.lib.php
查找此行:
如果($options!=null&&count($options)>0){
替换为:
如果($options!=null&&count((数组)$选项)>0){
它不能对un数组类型使用count()或sizeof()。将参数强制到数组是解决此错误的简单方法

相关问题