Catchable Fatal Error: Object of class __PHP_Incomplete_Class could not be converted to string

前端 未结 2 796
無奈伤痛
無奈伤痛 2020-12-19 10:23

I\'m having an error when I want to open a simple page. This is the full error:

ContextErrorException: Catchable Fatal Error: Object of class __PHP_In

相关标签:
2条回答
  • 2020-12-19 11:00

    For me help'd clearing cache/cookies in browser. (in browsers session was stored old version of user's entity).

    0 讨论(0)
  • 2020-12-19 11:02

    This error usually means that you try to deserialze object without loaded class for that object. So you should somehow define this class (e.g. including file with it) and then deserialize it.

    0 讨论(0)
提交回复
热议问题