如何根据url ??
中给出的大小更改显示图像大小www.example.com/photo/90x90/equation.jpg
equation.jpg的大小应该是90x90,如果我改变90x90的值,它将调整图像大小。
答案 0 :(得分:0)
$str = "www.example.com/photo/90x90/equation.jpg";
preg_match_all('/(?P<width>\d+)x(?P<height>\d+)/', $str, $matches);
print_r($matches);