Home  >  Article  >  php教程  >  Javascript与PHP验证用户输入URL地址是否正确,javascripturl

Javascript与PHP验证用户输入URL地址是否正确,javascripturl

WBOY
WBOYOriginal
2016-06-13 09:24:141077browse

Javascript与PHP验证用户输入URL地址是否正确,javascripturl

本文实例讲述了Javascript与PHP验证用户输入URL地址是否正确的方法,分享给大家供大家参考。具体方法如下:

1.javascript检测URL地址有效性:

复制代码 代码如下:


 URL:
 
 


 
 

2.PHP检测URL地址有效性

复制代码 代码如下:

function is_url($str){
return preg_match("/^http://[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&_~`@[]':+!]*([^"])*$/", $str);
}
?>

如果要尝试是否可以正常方法我们可使用file_get_contents()函数来验证就可以了。

希望本文所述对大家的PHP程序设计有所帮助。

php中用户输入的验证码怎用javascript 代码进行判断 是否输入正确

验证码一般都是在服务器随机产生,在html页面用ajax获取验证码来和用户输入的验证码进行比较

页面连接数据库的地方是不是有问题 , 建议你最好换个方法
 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn