Skip to content

Instantly share code, notes, and snippets.

@davidfuhr
Forked from anonymous/gist:3260973
Created August 6, 2012 04:47
Show Gist options
  • Save davidfuhr/3270651 to your computer and use it in GitHub Desktop.
Save davidfuhr/3270651 to your computer and use it in GitHub Desktop.
Dump all Session Related PHP ini Values
<?php
$ini = ini_get_all('session', false);
$ini['url_rewriter.tags'] = ini_get('url_rewriter.tags');
foreach($ini as $k => $v)
{
echo $k . ' = ' . $v . "\n<br/>\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment