首页 > 开发 > PHP > 正文

正则表达式判断email和URL, 帮忙看看有没有要补充的.

2024-05-04 22:58:14
字体:
来源:转载
供稿:网友
<body  onload="f.a.select();">
<?php
echo 'a:'.htmlspecialchars($a);
echo '<br>a1:';
$a1 = eregi_replace('(^[_.][:alnum:]-][email protected]([[:alnum:]][[:alnum:]-]*.)+[[:alpha:]]{2,3}$)',' <a href="mailto:/1">/1</a> ', $a) ;
echo htmlspecialchars($a1);
echo "<br>a1:$a1";

echo '<br>a2:';
$a2 = eregi_replace('([[:alnum:]]+://([[:alnum:]][[:alnum:]-]*/.)+[[:alpha:]]{2,3}([#/?///][^#/?///][:space:]][^[:space:]]*)?)',
      '<a href="/1" target="_blank">/1</a>', $a);
echo htmlspecialchars($a2);
echo "<br>a2:$a2";
// eregi('^[_.][:alnum:]-][email protected]([[:alnum:]][[:alnum:]-]*/.)+[[:alpha:]]{2,3}$',$a) or die("not a email");
?>

<form name="f">
<input  name="a" value="<?php echo $a; ?>">
<input type="submit" >
</form>

</body>    
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表