PHP 8.5.0 Alpha 4 available for testing

Voting

: seven minus six?
(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