在我的Mac上,我安装了xampp。由于某种原因,我正在开发的localhost网站拒绝设置会话。
在位于/Applications/XAMPP/xamppfiles/etc
的php.ini中我有这个
[Session]
; Handler used to store/retrieve data.
; http://php.net/session.save-handler
session.save_handler=files
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
;
; The path can be defined as:
;
; session.save_path = "N;/path"
session.save_path="/Applications/XAMPP/xamppfiles/temp"
我检查了/temp
文件夹,权限设置为777
然后我在我的终端输入php -i |grep session.save
我得到了这个
session.save_handler => files => files
session.save_path => no value => no value
知道为什么我不能设置会话吗?