php匹配url
发布时间: 2022-04-02 12:25:35
1. php如何使用正则表达式匹配url图片啊
可以这样:
$image="http://xxxxxxxxx.jpg"
preg_match("/(http://)?w+.jpg/",$image,$matches);//http://可要可不要
echo$matches[0];//$matches[0]即为匹配的图片路径
以上只是匹配jpg类型的图片
如果要匹配其他类型可以这样使用
preg_match("/(http://)?w+.(jpg|jpeg|gif|png)/",$image,$matches);
echo$matches[0];
2. 求一个PHP匹配URL的正则表达式
\/main.*info3=\d
3. php匹配URL 必须包含字串怎么写啊
是要提取额网页URL中含有&ct=1还是你要提取的<a> 标签中还有的href含有那个参数?说的具体点吧,呵呵
4. php 正则表达式 url匹配
1,preg_grep(pattern,array);它的返回值是一个新数组,新数组的元素是成功匹配的元素。
5. php 如何根据一个人url获取跳转后的url
直接javascript中给获取的url发送http请求,获取返回的结果,拿到中间的url地址。
6. PHP-php中如何使用正则表达式匹配URL中的域名
<?php
//从URL中取得主机名
preg_match("/^(http://)?([^/]+)/i","IP/index.html",$matches);
$host=$matches[2];
//从主机名中取得后面两段
preg_match("/[^./]+.[^./]+$/",$host,$matches);
echo"domainnameis:{$matches[0]} ";
?>
7. php正则匹配查找url
<?php
//需要匹配的字符串。
$content='您在主题<ahref="forum.php?mod=redirect&goto=findpost&pid=236803&ptid=70067"target="_blank">bameimiji</a>的帖子被<ahref="home.php?mod=space&uid=26">站长</a>评分金钱+3<divclass="quote"><blockquote>神马都是浮云</blockquote></div>';
if(preg_match("/.*站长[^>]*>([^<]*钱([^<]*))<.*/gi",$content,$m))
{
echo"结果是:".$m[1]." ";
echo"结果是:".$m[2]." ";
}
?>
8. php 正则表达式 提取指定超链接中的url
preg_match_all('/<a[^>]+href="([^"]+)"[^>]+class="green"
[^>]+/Ui', $str, $arr);
print_r($arr[1]);
9. 求个php正则匹配url
[a-zA-z]+://[^s]*
热点内容