Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
$data = "..........";
$search[] = '/\[img\](http\:\/\/.*?)\[\/img\]/i';
$search[] = '/(http\:\/\/.*?\.\w{2,6})/i';
$search[] = '/(www\..*?\.\w{2,6})(.*?)/i';
$replace[] = '<img src="${1}" />';
$replace[] = '<a href="${1}" target="_blank">${1}</a>';
$replace[] = '<a href="http://${1}" target="_blank">http://${1}</a>';
$data = preg_replace($search, $replace, $data);
?>
[ IMG]http://www.google.de[ /IMG]
[ IMG][ URL=http://www.google.de]Google[ /URL][ /IMG]
[ URL=http://www.google.de]Google[ /URL]
[ URL=[ URL=http://www.google.de]Google[ /URL]]Google[ /URL]
function getlinks($link)
{
$pattern = '/([\w]+:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/i';
$link = str_replace("http://www.","www.", $link);
$link = str_replace("www.","http://www.", $link);
$link = preg_replace_callback(
$pattern,
create_function(
'$matches',
'return getPageTitle($matches[0]);'
),
$link
);
$link = preg_replace("/([\w-?&;#~=\.\/]+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?))/i","<a href=\"mailto:$1\">$1</a>", $link);
return $link;
}
$pattern = '/(\s+[\w]+:\/\/[\w-?&;#~=\.\/\@]+[\w\/]\s+)/i';