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