类stdClass的对象无法转换为字符串

时间:2017-09-21 04:25:03

标签: php html

我对网站上的一些更新感到满意,但我无法找出我做错了什么。

我收到此错误:

  

类stdClass的对象无法转换为字符串

{
    $successMSG = "";
    header("refresh:0;http://145.53.93.209/comments/user/update_profile_pic.php?
        id=$user->filter->userid"); // redirects image view page after 5 seconds.
}

它没有检测到以下代码:

$user->filter->userid

我希望有人能帮助我。

1 个答案:

答案 0 :(得分:1)

使用curly braces while complex expressions正在使用。

header("refresh:0;http://145.53.93.209/comments/user/update_profile_pic.php?
id={$user->filter->userid}");        
// ^ --------------------^