Fatal error: Unsupported operand types in /var/www/mysite/includes/theme.inc on line 637

Fatal error: Unsupported operand types in /var/www/mysite/includes/theme.inc on line 637

根据此来源,当我尝试在 drupal 中自定义我自己的登录页面时发生错误:tutorial on how to customize and overriding login pages in drupal

然后我一直在使用 drush cc all 清除缓存,不知何故它出现了。我没有在代码中做任何事情,因为当我尝试应用它时它仍在工作,并且可以肯定的是,我追溯了我的编辑并且似乎没有任何问题。

mysite/includes/theme.inc

中637行
 // Merge the newly created theme hooks into the existing cache.
$cache = $result + $cache;

它只是说明 $result , $cache 没有相同的数据类型。这就是你面临问题的原因。尝试 var_dump() 两个值并检查那里的数据类型。

正如您在评论中所述,您需要执行以下操作:-

if(isset($result) && !empty($result)){$cache = $result + $cache;}