我的网址是这样的:
https://scontent-b.xx.fbcdn.net/hphotos-xap1/t1.0-9/s130x130/10424323_10152876971487952_1546612319458109056_n.jpg?oh=10e3a6ac938854989e6d5fe3b2682e56&oe=54D25E8E
如何通过js或php剪切/s130x130
?这不仅可以是/s130x130
(/s250x250
,/s340x239
等。网址必须类似于
https://scontent-b.xx.fbcdn.net/hphotos-xap1/t1.0-9/10424323_10152876971487952_1546612319458109056_n.jpg?oh=10e3a6ac938854989e6d5fe3b2682e56&oe=54D25E8E
答案 0 :(得分:2)
您可以使用正则表达式。
$url = 'https://scontent-b.xx.fbcdn.net/hphotos-xap1/t1.0-9/s130x130/10424323_10152876971487952_1546612319458109056_n.jpg?oh=10e3a6ac938854989e6d5fe3b2682e56&oe=54D25E8E';
$new_url = preg_replace('|(/s\d{1,3}x\d{1,3})[^/]|','',$url);
echo $new_url;