Guest User

Untitled

a guest
Nov 12th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. function checkSessionSupport(){
  3. if(isset($_GET['checkSessionSupport'])){
  4. echo 'session_start(): ';
  5. var_dump( session_start() );
  6. exit;
  7. }
  8. }
  9. add_action('init', 'checkSessionSupport', 9999);
Add Comment
Please, Sign In to add comment