suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php 怎么验证输入的url合法性?

小白小白2950 Tage vor1035

Antworte allen(2)Ich werde antworten

  • 数据分析师

    数据分析师2017-09-30 23:36:30

    php 怎么验证输入的url合法性?-PHP中文网问答-php 怎么验证输入的url合法性?-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    0
  • 迷茫

    迷茫2016-12-22 15:15:12

    首先,定义函数check_url:

    <?php
    function check_url($url){
        if(!preg_match('/http:\/\/[\w.]+[\w\/]*[\w.]*\??[\w=&\+\%]*/is',$url)){
            return false;
        }
        return true;
    }
    ?>

    使用方法:

    <?php
    $url='需验证的url';
    $isurl=check_url($url);
    if($isurl){
        echo 'url地址合法';
    }else{
        echo 'url地址非法';
    }
    ?>


    Antwort
    1
  • StornierenAntwort