12 lines
227 B
PHP
12 lines
227 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', '1');
|
|
|
|
require_once 'webanalyse.php';
|
|
$wa = new WebAnalyse();
|
|
$db = mysqli_connect('localhost', 'root', '', 'screaming_frog');
|
|
|
|
$wa->doCrawl(1);
|