Message: ini_set(): A session is active. You cannot change the session module's ini settings at this time

前端 未结 7 1508
误落风尘
误落风尘 2020-12-20 14:00

I created a login page with codeigniter,but i get the php message.

Message: ini_set(): A session is active. You cannot change the session module\'s ini setting

7条回答
  •  死守一世寂寞
    2020-12-20 14:26

    You can handle this issue by only running the command when it's needed like this:

    if (!isset($_SESSION)
        && !headers_sent()
    ) {
        session_start();
    }
    

提交回复
热议问题