久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      php獲取超鏈接文本內(nèi)容的正則表達式(五種方法)

      廢話不多說了,直接跟大家分享五種方法,通過代碼講解php獲取超鏈接文本內(nèi)容的正則表達式。

      //方法一 

        preg_match_all("/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i",$string,$matches);

      //方法二

        preg_match_all("/<a[dd]*>check user</a>/i",$string,$matches);  print_r($matches[0]);

      //方法三

        preg_match_all("/<a[^>]*>[^<]*</a>/i",$string,$matches);  print_r($matches[0]);

      //方法四

        preg_match_all("/<a.+?>check user</a>/is",$str,$arr);

      //方法五

        preg_match_all("/<a.+?>check user</a>/is",$str,$arr);

      以上就是小編跟大家介紹的php獲取超鏈接文本內(nèi)容的正則表達式(五種方法),希望大家喜歡。

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號