【发布时间】:2018-02-22 08:11:46
【问题描述】:
我刚刚更新了我的网上商店和 wordpress,每次我尝试查看商店页面时都会收到此错误:
Catchable fatal error: Object of class WC_Cart could not be converted to string in /var/www/eden-outcast.com/public_html/wp-includes/formatting.php on line 1109
但我似乎无法找到问题或解决方案。
formatting.php 第 1108 - 1113 行的内容是:
function wp_check_invalid_utf8( $string, $strip = false ) {
$string = (string) $string;
if ( 0 === strlen( $string ) ) {
return '';
}
虽然我可能是数据库的问题。 有什么想法吗?
【问题讨论】:
-
您正在尝试将对象转换为字符串。为此,对象必须具有 __toString 方法
标签: php wordpress woocommerce webshop