回答編集履歴
1
追記
test
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
`$result`には`false`がセットされているので`isset($result)`の結果は`true`となります。
|
2
|
+
|
3
|
+
|
2
4
|
|
3
5
|
```php
|
4
6
|
|
7
|
+
//if(isset($result)){
|
8
|
+
|
9
|
+
//isset()不要では?
|
10
|
+
|
5
|
-
if(
|
11
|
+
if($result){
|
6
12
|
|
7
13
|
```
|