Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
URLで指定されたサイズから表示画像サイズのベースを変更するにはどうすればよいですか??
www.example.com/photo/90x90/equation.jpg
equality.jpg のサイズは 90x90 である必要があり、90x90 の値を変更すると、画像のサイズが変更されます。
$str = "www.example.com/photo/90x90/equation.jpg"; preg_match_all('/(?P<width>\d+)x(?P<height>\d+)/', $str, $matches); print_r($matches);