ereg 已弃用转换
可能的重复:
将 ereg 表达式转换为 preg
我需要将此处的 ereg 用法转换为更新的内容(因为 ereg 已被弃用)。
这是我的代码当前依赖的函数:
function ValidEmail($address)
{
if( ereg( ".*<(.+)>", $address, $regs ) ) {
$address = $regs[1];
}
if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
return true;
else
return false;
}
由于我不使用正则表达式 - 有人可以帮助我将该函数转换为功能完全相同但不使用已弃用的函数的函数吗?谢谢。
Possible Duplicate:
Converting ereg expressions to preg
I need to convert the ereg usage here to something more current (since ereg is deprecated).
Here's the function my code currently relies on:
function ValidEmail($address)
{
if( ereg( ".*<(.+)>", $address, $regs ) ) {
$address = $regs[1];
}
if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
return true;
else
return false;
}
As I don't regex - could someone help me convert the function to something that functions the exact same way but isn't using a deprecated function? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来我需要添加的只是将 ereg 切换到 preg_match 并为每个模式添加一个分隔字符:
Looks like all I needed to add was switch ereg to preg_match and add a delimiting character to each pattern: