回答編集履歴
5
修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
<?php
|
6
6
|
|
7
|
-
for ($i=1; $i<=5; $i++){
|
7
|
+
for ( $i=1; $i<=5; $i++ ) {
|
8
8
|
|
9
9
|
// 画像のフルパス
|
10
10
|
|
4
修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
if ( file_exists($filename) ) {
|
18
18
|
|
19
|
-
echo'<img src="images/'.$row['shop_name'].'/'.$i.'.jpg">';
|
19
|
+
echo '<img src="images/'.$row['shop_name'].'/'.$i.'.jpg">';
|
20
20
|
|
21
21
|
}
|
22
22
|
|
3
修正
test
CHANGED
@@ -6,17 +6,21 @@
|
|
6
6
|
|
7
7
|
for ($i=1; $i<=5; $i++){
|
8
8
|
|
9
|
-
|
9
|
+
// 画像のフルパス
|
10
10
|
|
11
|
-
|
11
|
+
$filename = '/path/images/'.$row['shop_name'].'/'.$i.'.jpg';
|
12
12
|
|
13
|
-
if ( file_exists($filename) ) {
|
14
13
|
|
15
|
-
echo'<img src="images/'.$row['shop_name'].'/'.$i.'.jpg">';
|
16
14
|
|
17
|
-
|
15
|
+
// 画像があれば表示
|
18
16
|
|
17
|
+
if ( file_exists($filename) ) {
|
18
|
+
|
19
|
+
echo'<img src="images/'.$row['shop_name'].'/'.$i.'.jpg">';
|
20
|
+
|
19
|
-
}
|
21
|
+
}
|
22
|
+
|
23
|
+
}
|
20
24
|
|
21
25
|
|
22
26
|
|
2
修正
test
CHANGED
@@ -1 +1,25 @@
|
|
1
1
|
[file_exists](https://www.php.net/manual/ja/function.file-exists.php)で画像があれば表示するようにしてみてはどうでしょうか。
|
2
|
+
|
3
|
+
```PHP
|
4
|
+
|
5
|
+
<?php
|
6
|
+
|
7
|
+
for ($i=1; $i<=5; $i++){
|
8
|
+
|
9
|
+
$filename = '/path/images/'.$row['shop_name'].'/'.$i.'.jpg';
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
if ( file_exists($filename) ) {
|
14
|
+
|
15
|
+
echo'<img src="images/'.$row['shop_name'].'/'.$i.'.jpg">';
|
16
|
+
|
17
|
+
}
|
18
|
+
|
19
|
+
}
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
?>
|
24
|
+
|
25
|
+
```
|
1
修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
[file_exists](http://php
|
1
|
+
[file_exists](https://www.php.net/manual/ja/function.file-exists.php)で画像があれば表示するようにしてみてはどうでしょうか。
|