session_start Throws Fatal Error

前端 未结 3 541
醉话见心
醉话见心 2021-01-29 03:04

I\'m currently working on a small CMS for my website and I\'m getting following error when calling session_start() :

Fatal error: Exception thrown withou

3条回答
  •  终归单人心
    2021-01-29 03:47

    You cannot store resources (a PDO object is actually a resource) in a session. On reinitialisation this is broken and throws an exception 'outside' the scope of your PHP file.

提交回复
热议问题