Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created May 7, 2016 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tribulant/d9ad8be4316a09af7b26a825f347be6f to your computer and use it in GitHub Desktop.
Save tribulant/d9ad8be4316a09af7b26a825f347be6f to your computer and use it in GitHub Desktop.
Really Simple Captcha plugin - cleanup() method
<?php
$captcha = new ReallySimpleCaptcha();
// ...
// Run a cleanup on images older than 60 minutes
$minutes = 60;
$max = 100;
$captcha -> cleanup($minutes, $max);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment