PHP Archiv

Das PHP Script Verzeichnis

Tag Archives: wandeln

Die folgene Routine wandelt Textlink in HTML Links um function text2links($str=“) { if($str==“ or !preg_match(‚/(http|www.|@)/i‘, $str)) { return $str; } $lines = explode(„n“, $str); $new_text = “; while (list($k,$l) = each($lines)) { // replace links: $l = preg_replace(„/([ t]|^)www./i“, „\1http://www.“, $l); $l = preg_replace(„/([ t]|^)ftp./i“, „\1ftp://ftp.“, $l); $l = preg_replace(„/(http://[^ )rn!]+)/i“, „<a href=“\1″>\1</a>“, $l); $l […]