<?php
$startTime = microtime(true);
# Test-Strings:

$a[] = 'gtlhmgbtujy, <a href = "http://www.fuclgkbbnh.com">iqjfunnsej</a> , [url = http://www.kvhpydjclx.com]tqgiacfovj[/url], http://www.bsgnbtiyhn.com iqjfunnsej, http://www.bsgnbtiyhn.com iqjfunnsej';
$a[] = 'Kaufen Sie Vi@gr@!';
$a[] = 'Make million Dollars in a minute';
$a[] = 'Sacher- Finanz" macht Sie Reich';
$a[] = 'Reich werden mit Sacher-Finanz';
$a[] = 'Nur Sacherfinanz nimmt Ihr Geld';
$a[] = 'http://kkkk  http://gghjgh  http://liliul';
$a[] = '<a href = "http://bigzgzgjzg">bigzgzgjzg</a>';
$a[] = '&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;&#a01;';
$a[] = '$foo$$';
$a[] = '$foo$$$ bar';
$a[] = 'Das ist anderer Text';
$a[] = 'Hallo
Du
schöne
Welt!';

# Exec!

require('./SpamDetector.php');                  #Step 1
$spamdetector = new SpamDetector();      #Step 2
?><html>
<head>
<style>
.test { padding:.5em; background-color:#f0f0f0;}
.isSpam { padding:.5em; color:red; font-weight:bold;margin-bottom:1em;}
.noSpam { padding:.5em; color:green; font-weight:bold;margin-bottom:1em;}
</style>
</head>
<body>
<?php
foreach ( $a as $str) {
	echo '<div class="test">' . htmlspecialchars( $str ) . '</div>';
    if ( $spamdetector -> detect( $str ) ) {   #Step 3
        echo '<div class="isSpam">Spam detected!</div>';
    } else {
        echo '<div class="noSpam">Spam NOT detected!</div>';
    }
}
echo '<hr><div>(' . round ( ( microtime(true) - $startTime) * 1000, 2 ) . ' Millisekunden auf einem &quot;Scheckkartenrechner&quot; RasperryPi 4)</div>';
?>
</body>
</html>
