Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能解决这个问题?
警告:ini_set() [function.ini-set]:会话处于活动状态。此时您无法在第 3 行的 C:\xampp\htdocs** * * ** .php 中更改会话模块的 ini 设置
我已经尝试过使用session_destroy();但我仍然得到错误。
session_destroy();
谢谢。
使用session_start();afterini_set或@sign before ini_set:@ini_set
session_start();
ini_set
@ini_set
如果您的服务器配置为自动启动会话,您也可以尝试:
php_flag session.auto_start 0
在您的 .htaccess 文件中