3v4l.org

run code in 300+ PHP versions simultaneously
<?php session_name('hello'); session_start(); $_SESSION['value'] = 42; session_write_close(); session_unset(); session_destroy(); $_SESSION['value'] = 52; $name = session_name(); print_r([$name, $_SESSION]);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: session_destroy(): Trying to destroy uninitialized session in /in/a7UIn on line 10 Array ( [0] => hello [1] => Array ( [value] => 52 ) )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
26.02 ms | 401 KiB | 8 Q