phpハイパーリンクテキストの内容を得るための正規表現(5つの方法)
余計な話はしないで、直接みんなと5種類の方法を共有して、コードを通じてphpを解説してハイパーリンクのテキストの内容の正規表現を獲得します。
//方法一
//方法一
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でハイパーリンクテキストの内容を正规表式(5つの方法)に取得しました。