Skip to content

Instantly share code, notes, and snippets.

@hausl
Last active August 29, 2015 14:05
Show Gist options
  • Save hausl/ca143fa4d63f819384f4 to your computer and use it in GitHub Desktop.
Save hausl/ca143fa4d63f819384f4 to your computer and use it in GitHub Desktop.
<?php
function redirect($url, $status = 302) {
if (session_id() !== '') {
session_write_close();
}
header("Location: ".$url, true, $status);
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment