Created
January 30, 2010 21:45
-
-
Save co3k/290741 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
print apc_clear_cache('user') ? 'Remove user cache successfully.' : 'Failed to remove user cache.'; | |
echo PHP_EOL; | |
print apc_clear_cache() ? 'Remove system cache successfully.' : 'Failed to remove system cache.'; | |
echo PHP_EOL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment