PHP 实现邮箱登录跳转
PHP 实现邮箱登录跳转:代码如下:
/** * 跳转到指定的邮箱 * @param type $mail * @return string */ function gotoEmail($mail){ $t=$mail.split('@')[1]; $t=$t.toLowerCase(); if($t=='163.com'){ return 'mail.163.com'; }else if($t=='vip.163.com'){ return 'vip.163.com'; }else if($t=='126.com'){ return 'mail.126.com'; }else if($t=='qq.com'||$t=='vip.qq.com'||$t=='foxmail.com'){ return 'mail.qq.com'; }else if($t=='gmail.com'){ return 'mail.google.com'; }else if($t=='sohu.com'){ return 'mail.sohu.com'; }else if($t=='tom.com'){ return 'mail.tom.com'; }else if($t=='vip.sina.com'){ return 'vip.sina.com'; }else if($t=='sina.com.cn'||$t=='sina.com'){ return 'mail.sina.com.cn'; }else if($t=='tom.com'){ return 'mail.tom.com'; }else if($t=='yahoo.com.cn'||$t=='yahoo.cn'){ return 'mail.cn.yahoo.com'; }else if($t=='tom.com'){ return 'mail.tom.com'; }else if($t=='yeah.net'){ return 'www.yeah.net'; }else if($t=='21cn.com'){ return 'mail.21cn.com'; }else if($t=='hotmail.com'){ return 'www.hotmail.com'; }else if($t=='sogou.com'){ return 'mail.sogou.com'; }else if($t=='188.com'){ return 'www.188.com'; }else if($t=='139.com'){ return 'mail.10086.cn'; }else if($t=='189.cn'){ return 'webmail15.189.cn/webmail'; }else if($t=='wo.com.cn'){ return 'mail.wo.com.cn/smsmail'; }else if($t=='139.com'){ return 'mail.10086.cn'; }else { return ''; } };
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/565
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/565