PHP 7中的会话

前端之家收集整理的这篇文章主要介绍了PHP 7中的会话前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在使用 PHP 5.xx多年,但最近更新到 PHP 7.我无法创建会话.

我已经阅读了文档.

在早期的PHP中,你只需要做:

session_start();

开始会话,但是这不支持PHP 7,我的页面不断加载.我在PHP网站上提供了参数中的数组,但仍然继续加载页面.

我试过这个:

session_start([
'cache_limiter' => 'private','read_and_close' => true,]);

但我的浏览器继续加载,几秒钟后,它显示“此网页不可用”

Apache重启错误

[Wed Dec 30 00:45:16.470001 2015] [mpm_winnt:notice] [pid 2384:tid 376] AH00455: Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.0 configured — resuming normal operations

[Wed Dec 30 00:45:16.470001 2015] [mpm_winnt:notice] [pid 2384:tid 376] AH00456: Apache Lounge VC14 Server built: Dec 9 2015 10:17:39

[Wed Dec 30 00:45:16.470001 2015] [core:notice] [pid 2384:tid 376] AH00094: Command line: ‘c:\xampp\apache\bin\httpd.exe -d C:/xampp/apache’

[Wed Dec 30 00:45:16.470001 2015] [mpm_winnt:notice] [pid 2384:tid 376] AH00418: Parent: Created child process 1716

[Wed Dec 30 00:45:17.172064 2015] [ssl:warn] [pid 1716:tid 384] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name

[Wed Dec 30 00:45:17.343941 2015] [ssl:warn] [pid 1716:tid 384] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name

[Wed Dec 30 00:45:17.375192 2015] [mpm_winnt:notice] [pid 1716:tid 384] AH00354: Child: Starting 150 worker threads.

我发现它与xampp版本相关的错误,即x86或x64位.
我有一个系统与x64位窗口,我安装了一个xampp与PHP7,但它是x86位.这是apache崩溃的原因.

现在我分别安装了apach2.4(x64)和PHP7.0.1,它现在工作完美.

原文链接:https://www.f2er.com/php/140167.html

猜你在找的PHP相关文章