回答編集履歴

1

書き間違い

2016/10/27 08:46

投稿

mizugasira
mizugasira

スコア29

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  //対象ファイルはこちら
6
6
 
7
- $file = "http://www.city.omura.nagasaki.jp/index.html";
7
+ $file = "読み取るページのURL";
8
8
 
9
9
  //ファイルソースを文字列として所得
10
10
 
@@ -12,13 +12,15 @@
12
12
 
13
13
  //その中に画像パスがあるか検索します
14
14
 
15
- preg_match_all('/<img.*src\s*=\s*[\"|\'](.*?)[\"|\'].*>/i', file_get_contents($file), $img_path_list);
15
+ preg_match_all('/<img.*src\s*=\s*[\"|\'](.*?)[\"|\'].*>/i', $file_content, $img_path_list);
16
16
 
17
17
  header('Content-type: image/jpeg');
18
18
 
19
- //表示します
19
+ // 表示します
20
20
 
21
+ // 自分の場合こうなりましたが、配列の中身が違うこともあります。
22
+
21
- $img_path_list[1][0] = 'http://www.city.omura.nagasaki.jp' . $img_path_list[1][0];
23
+ $img_path_list[1][0] = 'http://xxxx.co.jp' . $img_path_list[1][0];
22
24
 
23
25
 
24
26