PHP code example of ircop / antiflood
1. Go to this page and download the library: Download ircop/antiflood library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ircop / antiflood example snippets
\Antiflood::check( $ident, $maximum = 1 );
// Or with IP identity
\Antiflood::checkIP( $maximum = 1 );
\Antiflood::put( $ident, $minutes = 10 );
// Or with IP identity
\Antiflood::putIP( $minutes = 10 );
public function postPasswordRecover()
{
$key = \Input::get('email');
if( \Antiflood::check( $key ) === FALSE )
return redirect()->back()->withErrors(['.....']);
// ....
// ....
// ....
\Antiflood::put( $key, 20 );
}