Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Würde ich auch sagen, weil diese Einträge nicht nach einem Bot aussehen...Und wenn es gar kein Bot ist?
Vielleicht verarscht dich jemand.
<?php
header ("Content-type: image/png");
$im = @ImageCreate (101, 101)
or die ("Kann keinen neuen GD-Bild-Stream erzeugen");
$background_color = ImageColorAllocate ($im, 255, 255,255);
$line_color = ImageColorAllocate ($im, 0, 0, 0);
imageellipse($im,50,50,100,100,$line_color);
for($i = 0;$i < 12;$i++)
{
$linelen = 3;
if($i==0 OR $i == 3 OR $i == 9 OR $i == 12)
{
$linelen = 5;
}
imageline($im,50 + cos(deg2rad($i*30 - 90))*50,50 + sin(deg2rad($i*30 - 90))*50,50 + cos(deg2rad($i*30 - 90))*(50-$linelen),50 + sin(deg2rad($i*30 - 90))*(50-$linelen),$line_color);
}
$h = rand(0,11);
$min = rand(0,11);
$min_zeiger = 40 + rand(-5,10);
imageline($im,50,50,50 + cos(deg2rad($min*30 - 90))*$min_zeiger,50 + sin(deg2rad($min*30 - 90))*$min_zeiger,$line_color);
$h_zeiger = 20 + rand(-5,10);
imageline($im,50,50,50 + cos(deg2rad($h*30 - 90))*$h_zeiger,50 + sin(deg2rad($h*30 - 90))*$h_zeiger,$line_color);
$stoerlines = rand(2,5);
for($i=0;$i < $stoerlines;$i++)
{
if(rand(0,1))
{
$rand_grad1 = rand(0,360);
$rand_grad2 = rand(0,360);
imageline($im,50 + cos(deg2rad($rand_grad1 - 90))*50,50 + sin(deg2rad($rand_grad1 - 90))*50,50 + cos(deg2rad($rand_grad2 - 90))*50,50 + sin(deg2rad($rand_grad2 - 90))*50,$line_color);
}
else
{
imageline($im,rand(0,100),rand(0,100),rand(0,100),rand(0,100),$line_color);
}
}
imageline($im,49,49,49,51,$line_color);
imageline($im,50,49,50,51,$line_color);
imageline($im,51,49,51,51,$line_color);
#$text_color = ImageColorAllocate ($im, 0, 0, 0);
#ImageString ($im, 1, 5, 5, $h.':'.$min*5, $text_color);
ImagePNG ($im);
?>
test
huhu
etc
<?php
$tofind_text = file("test.txt");
$text = "Das ist nur ein test eintrag";
echo $text;
foreach($tofind_text as $element) {
echo $element."<br>";
if(stristr(strtolower($text),strtolower($element)) == TRUE){
echo "Wort vorhanden<br>";
}else{
echo "Wort nicht vorhanden<br>";
}
}
?>
if(stristr(strtolower($text),strtolower(trim($element))) == TRUE)