ホームページ >バックエンド開発 >PHPチュートリアル >正規表現を検索する
正規表現を使用して、http:// から .jpg までの文字列 (http://www.test.com/test.jpg、http://www.test.com/test2.jpg など) を取得し、パス
#http://.+?.jpg#is
#http://.+?.jpg#
preg_match_all('#http://.+?\.jpg#is', $result, $image);print_r($image);