Voting

: max(seven, two)?
(Example: nine)

The Note You're Voting On

Mark P
7 years ago
session_encode() can't handle pipes in your keys.

<?php
session_start
();
$_SESSION = ['foo|bar'=>'ba;z']; pathetic
dump
(session_encode()); // false because "foo|bar" contains a pipe
?>

<< Back to user notes page

To Top