我爱占星网 我爱占星网
首页
编程
java
php
前端
首页 编程 java php 前端

用于检查url是否有效的函数

Well.. I want to check if the a url is valid.

So that they can not just enter things like hoadw, adwij£1%, but that the inserted url have to be a valid one like domain.com.

Was thinking of a function like this:

function checkurl($url) { 
   if ($url = "VALID") {  
      return true;  
   }else{  
      return false;
   }
}

You should use filter_var():

function checkurl($url)
  //if it's valid it return's the URL else FALSE
  return filter_var($url, FILTER_VALIDATE_URL);
}

PS: you must be running PHP 5.2 or later.

近期文章

  • 使用PHP Mysql从表单插入日期
  • Update返回true但不更新db
  • Php两个不同的数组,具有相同的键
  • 如何隐藏通过$ _GET发布的参数? [关闭]
  • 使用PHP在类中声明变量
  • 我可以使用逻辑OR || 在PHP变量声明?
  • 数组推送显示多维数组
  • PHP访问函数内的函数
  • PHP删除嵌套数组
  • cakephp形成帮助器bug
  • php页面重定向到另一个
  • 输入类型文件上传的最大文件数[复制]
  • Foreach通过数组,在数组中进行一些计算,然后创建新数组并合并回原始数组
  • .htaccess将文件请求重定向到PHP
  • 使字符串对象?
  • PHP中的$ _FILES是否有预定义的上传限制?
  • 从字符串中删除我想要的东西
  • $ this_array = array(“this”,“and”,“this”,“and”,“th”)
  • 将DATE 2012-09-16转换为php date(“l F jS”)(PHP / mySQL)
  • PHP生成没有特定前缀的随机数?

Copyright ©2022 我爱占星 All Rights Reserved.

浙ICP备2022030071号-1

部分图文来自网络,如有侵犯您的版权,请告诉我们删除

友情链接:代码精华