0

こんにちは、2、3 年前にいくつかのスクリプトを書きました。今は動いていません。私のスクリプト:

<?php
 function tolink($text){

    $text = " ".$text;
    $text = ereg_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)',
            '<a href="\\1" target="_blank" rel="nofollow">\\1</a>', $text);
    $text = ereg_replace('(((f|ht){1}tps://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)',
            '<a href="\\1" target="_blank" rel="nofollow">\\1</a>', $text);
    $text = ereg_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)',
    '\\1<a href="http://\\2" target="_blank" rel="nofollow">\\2</a>', $text);
    $text = ereg_replace('([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,4})',
    '<a href="mailto:\\1"  rel="nofollow">\\1</a>', $text);
    return $text;
    }

    ?>

ereg_replace を preg_replace に置き換えると、エラーが発生します。

あなたの助けが必要です...ありがとう...

4

1 に答える 1