Skip to content

Instantly share code, notes, and snippets.

@roderik
Created June 4, 2012 14:49
Show Gist options
  • Save roderik/2868838 to your computer and use it in GitHub Desktop.
Save roderik/2868838 to your computer and use it in GitHub Desktop.
<?php
if (in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) {
apc_clear_cache();
apc_clear_cache('user');
apc_clear_cache('opcode');
echo json_encode(array('success' => true));
} else {
die('SUPER TOP SECRET');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment