匹配字符串解决办法
程序员文章站
2022-04-13 23:15:31
...
匹配字符串
如何返回url呢???
传入字符串:
返回字符串
------解决方案--------------------
如何返回url呢???
传入字符串:
- HTML code
莎莉娜美容中心 Celina ...
返回字符串
- HTML code
http://www.macaucentral.com/dev/index.php/beauty-content/6579-celina-beauty-centre
------解决方案--------------------
- PHP code
莎莉娜美容中心 Celina ...';$pattern='/]*href="([^"\']*)"/';preg_match($pattern,$str,$matchs);print_r($matchs);
------解决方案--------------------
preg_match('/href="([^"]*)"/',$str,$arr);
echo $arr[1];相关文章
相关视频