質問編集履歴
1
解決したコードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -103,3 +103,19 @@
|
|
103
103
|
Fatal error: Uncaught Exception: DateTime::__construct(): Failed to parse time string (2) at position 0 (2): Unexpected character in : DateTime->__construct('2')
|
104
104
|
|
105
105
|
```
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
おかげさまで、
|
110
|
+
|
111
|
+
以下のコードで解決できました。
|
112
|
+
|
113
|
+
```php
|
114
|
+
|
115
|
+
$result = $sth->fetchall(PDO::FETCH_ASSOC);
|
116
|
+
|
117
|
+
foreach($result as $row){
|
118
|
+
|
119
|
+
}
|
120
|
+
|
121
|
+
```
|