function validateEmail($email)
{ return eregi("^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+ (.[a-z0-9-]+)*(.[a-z]{2,3})$", $email);
}
function validateURL($url)
{ return eregi("^((ht|f)tp://)((([a-z0-9-]+(.[a-z0-9-]) +)*(.[a-z]{2,3}))|(([0-9]{1,3}.){3}([0-9]{1,3})))((/ |?)[a-z0-9~#%&'_+=:?.-]*)*)$", $url);
}
function ConvertURLS($text)
{ $text = eregi_replace("((ht|f)tp://www.|www.)([a-z0-9-]+(.[a-z0 -9-]+)*(.[a-z]{2,3})((/|?)[a-z0-9~#%&\/'_+=:?.-]*)*)" 、"http://www.\3"、$text);
$text = eregi_replace("((ht|f)tp://)((([a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2 ,3}))|(([0-9]{1,3}.){3}([0-9]{1,3})))((/|?)[a-z0-9~ #%&'_+=:?.-]*)*)", "\0", $text);
$text を返します。
}
function ConvertMail($text)
{ $text = eregi_replace("([_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-] +(.[a-z0-9-]+)*(.[a-z]{2,3}))", "\0", $text);
$text を返します。
}
関数 ConvertAllLinks($text)
{ $text = ConvertURLS($text);
$text = ConvertMail($text);
$text を返します。
}
?>