ConFoo Montreal 2026: Call for Papers

Voting

: three plus three?
(Example: nine)

The Note You're Voting On

Mark P
8 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