我收到一条错误消息,说 trim() 期望参数 1 是字符串,给定数组。这是第二行:
$page_result = $title_result->FetchRow();
if (strlen(trim($page_result)) > 0)
$this->body = stripslashes(urldecode($page_result['title_module_text']));
else
$this->body = "";
我认为 trim() 的第一个参数是一个字符串?