Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$source = preg_replace( "#\[url\s*=\s*(\S.+?)\s*\](.*?)\[\/url\]#ie" , "\$this->build_YOUR_TAG('\\1')", $source );
$xml = file_get_contents('http://www.timezero.ru/cgi-bin/info.pl?'.$nick.'');
$xml = '<?xml version="1.0" encoding="UTF-8"?>'.$xml;
$xmldoc = new DOMDocument();
$xmldoc->loadXML($xml);
$usercol = $xmldoc->getElementsByTagName('USER');
$user = $usercol->item(0);
$lvl=$user->attributes->getNamedItem('level')->nodeValue;
$prof=$user->attributes->getNamedItem('pro')->nodeValue;
$source = preg_replace( "#\[lvlp\s*=\s*(\S.+?)\s*\](.*?)\[\/lvlp\]#ie", "\$this->build_lvlp('\\1')", $source );
function build_lvlp ( $nick ) {
$xml = file_get_contents('http://www.timezero.ru/cgi-bin/info.pl?'.$nick.'');
$xml = '<?xml version="1.0" encoding="UTF-8"?>'.$xml;
$xmldoc = new DOMDocument();
$xmldoc->loadXML($xml);
$usercol = $xmldoc->getElementsByTagName('USER');
$user = $usercol->item(0);
$lvl=$user->attributes->getNamedItem('level')->nodeValue;
$prof=$user->attributes->getNamedItem('pro')->nodeValue;
return "<a href=\"http://www.timezero.ru/cgi-bin/info.pl?".$nick."\">".$nick." [".$lvl."] <img src=\"URL?".$prof."\"></a>";
}