blog
copyright ©
creamu Inc. All Rights Reserved.
art direction & design: Kunitaka Kawashimo
code, interaction & photography: creamu Inc.
category: Technology

session_destroy(): Trying to destroy uninitialized session『PHPバグフィックス』

Pocket

PHPバグフィックスメモ。超小ネタ。 session_destroy(): Trying to destroy uninitialized session 上記のWarningは以下の方法で回避。 【変更前】 session_destroy(); 【変更後】 @session_destroy(); ↓を参照。 » Warning: Trying to destroy uninitialized session