Skip to content

Instantly share code, notes, and snippets.

@wimvds
Forked from roderik/gist:2868838
Last active October 12, 2015 06:48
Show Gist options
  • Save wimvds/3987685 to your computer and use it in GitHub Desktop.
Save wimvds/3987685 to your computer and use it in GitHub Desktop.
<?php
if (in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1', @$_SERVER['SERVER_ADDR']))) {
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