0
我在woocommerce網站的評論中看到這個錯誤。 我認爲這個問題是與電子郵件,但如何解決呢 請幫助警告:strlen()期望參數1是字符串,對象在2481行的格式化.php中給出
警告:strlen的()預計參數1是字符串,對象formatting.php給出線2481
線2481第二行
<code>
// Test for the minimum length the email can be
if (strlen($email) < 3) {
/**
* Filter whether an email address is valid.
*
* This filter is evaluated under several different contexts, such as 'email_too_short',
* 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits',
* 'domain_no_periods', 'sub_hyphen_limits', 'sub_invalid_chars', or no specific context.
</code>
你的錯誤意味着你正在傳遞一個對象到你的strlen函數。所以$ email是一個對象。 這個$電子郵件從哪裏來? –