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.
<?php
$ip = gethostbyname('www.tutorialstar.de');
echo $ip;
?>
<?
// Trage hier deine oder auch eine andere Website ein
$ziel_url = "https://www.spiegel.de";
// Die Alexa seite wo der Alexa Rank abgefragt wird
$alexa_url = 'https://data.alexa.com/' .
'data?cli=10&dat=snbamz&url=' . $ziel_url;
// Abfrage wird getätigt
$sAbfrage = file_get_contents($alexa_url);
// Antwort wird herausgefiltert
$alexa_prüfsyntax = '/" TEXT="((\d|\,)+?)"/';
preg_match($alexa_prüfsyntax, $sAbfrage, $alexa_antwort);
// Altwort wird überprüft
if(!isset($alexa_antwort[1]))
{
$alexa_antwort[1] = '-';
}
// Antwort ausgeben
echo "<br />
";
echo "Alexa Rank ist: ".number_format($alexa_antwort[1])."";
echo "<br />
<BR />
";
?>
danke, hmm aber wenn das eigentlich net erlaubt ist!? hmm