我如何在 PHP 中使用正则表达式来实现这一点
http://www.domain.com/path/to/image/ipsum_image.jpg
匹配这个并忽略大小部分
http://www.domain.com/path/to/image/ipsum_image-300x200.jpg
请记住,300x200 可以是任何东西,从 4charsx4chars 到 1charx1char
$subject = 'http://www.domain.com/path/to/image/ipsum_image-300x200.jpg';
$result = preg_replace('&(-[0-9]{1,4}x[0-9]{1,4})&is', '', $subject);
echo $result;
$str= "http://www.domain.com/path/to/image/ipsum_image-300x200.jpg";
$regex= '/(\d{1,4})x(\d{1,4}).jpg$/i';
preg_match($regex, $str, $match, PREG_OFFSET_CAPTURE, 3);
print_r($match);