PHP code example of mallka / anti-crawl
1. Go to this page and download the library: Download mallka/anti-crawl 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/ */
mallka / anti-crawl example snippets
//sample action ,please create table first.
use Yii;
class AntiLogController extends \yii\web\Controller
{
public function actionCreate()
{
$model = new AntiLog();
$model->loadDefaultValues();
$model->ip = Yii::$app->request->getUserIP();
$model->url =Yii::$app->request->getReferrer();
$model->finger = Yii::$app->request->post('fingerPrint');
$model->finger_time = Yii::$app->request->post('executeTime',0);
$model->finger_detail = Yii::$app->request->post('detail',0);
$model->create_at=time();
$model->user_id = Yii::$app->user->getId();
$model->save();
return;
}
}