Declaration error
Ik krijg bij het volgende de script de volgende error
Fatal error: Declaration of MySQL::query() must be compatible with that of Database::query() in C:\wamp\www\gastenboek\gastenboek.class.php on line 168
Maar ik snap niet wat er nu fout is, Dit is de code
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<?php
### Gastenboek class ###
class Gastenboek
{
private $_Adapter;
public function __construct (GastenboekAdapter $Adapter)
{
$this->_Adapter = $Adapter;
}
public function weergeven ()
{
$Reacties = $this->_Adapater->alle_reacties ();
$Resultaat = '<div id="gastenboek">';
foreach ($Reacties as $Reactie)
{
$Gebruiker = new Gebruiker ($Reactie['gebruiker_naam'], NULL, $Reactie['gebruiker_website']);
$Reactie = new Reactie ($this->_Adapter, $Reactie['reactie'], $Gebruiker, $Reactie['datum'], $Reactie['tijd']);
$Resultaat = $Reactie->weergeven ();
}
return $Resultaat . '</div>';
}
}
class Gebruiker
{
private $_Naam;
private $_Email;
private $_Website;
public function __construct($Naam, $Email, $Website)
{
$this->_Naam = $Naam;
$this->_Email = $Email;
$this->_Website = $Website;
}
public function reactie_plaatsen (GastenboekAdapter $Adapter, $Reactie)
{
$Reactie = new Reactie ($Adapater, $Reactie, $this, date ('Y-m-d'), date ('H:i'));
$Reactie->opslaan ();
}
public function weergeven ()
{
if ($this->_Website != NULL)
{
return '<a href="' .$this->_Website. '">' .$this->_Naam. '</a>';
}
else
{
return $this->_Naam;
}
}
public function geef_gegevens ()
{
return array
(
'naam' => $this->_Naam,
'email' => $this->_Email,
'website' => $this->_Website
);
}
}
class Reactie
{
private $_Adapter;
private $_Gebruiker;
private $_Reactie;
private $_Datum;
private $_Tijd;
public function __construct (GastenboekAdapter $Adapater, $Reactie, $Gebruiker, $Datum, $Tijd)
{
$this->_Adapter = $Adapter;
$this->_Reactie = $Reactie;
$this->_Gebruiker = $Gebruiker;
$this->_Datum = $Datum;
$this->_Tijd = $Tijd;
}
public function weergeven ()
{
return
'
<div class="reactie">
<span class="geplaats">Geplaatst door ' .$this->_Gebruiker->weergeven. ' op <strong>' .$this->_Datum. '</strong> om <strong>' .$this->_Tijd. '</strong></span>
<p>' .$this->_Reactie. '</p>
';
}
public function opslaan ()
{
$Gebruiker = $this->_Gebruiker->geef_gevens ();
$this->_Adapter->reactie_toevoegen
(
$this->_Reactie,
$Gebruiker['naam'],
$Gebruiker['email'],
$Gebruiker['website'],
$this->_Datum,
$this->_Tijd
);
}
}
interface Database
{
public function maak_verbinding ($Host, $Gebruikersnaam, $Wachtwoord, $Naam);
public function query ();
}
interface DatabaseResult
{
public function fetch_assoc ();
public function fetch_alles ();
public function aantal_regels ();
}
class MySQL implements Database
{
private $_Connectie;
public function maak_verbinding ($Host, $Gebruikersnaam, $Wachtwoord, $Naam)
{
if (!$this->_Connectie = mysqli_connect($Host, $Gebruikersnaam, $Wachtwoord, $Naam))
{
throw new DatabaseExeception ('Kan geen verbinding met de database leggen');
}
}
public function query ($Query)
{
$Resultaat = mysqli_query ($this->_Connectie, $Query);
if ($Resultaat)
{
throw new DatabaseExeception ('Er is een fout opgetreden met het uitvoeren van de query');
}
return new MySQLResult ($Resultaat);
}
}
class MySQLResult implements DatabaseResult
{
private $_Resultaat;
public function __construct ($Resultaat)
{
$this->_Resultaat = $Resultaat;
}
public function fetch_assoc ()
{
return mysqli_fetch_assoc ($this->_Resultaat);
}
public function fetch_alles ()
{
$Resultaat = array ();
while ($Regel = $this->fetch_assoc ())
{
$Resultaat[] = $Regel;
}
$Resultaat;
}
public function aantal_regels ()
{
return mysqli_num_rows ($this->_Resultaat);
}
}
class DatabaseException extends Exception
{
}
interface GastenboekAdapter
{
public function reactie_toevoegen ($Reactie, $Gebruiker_naam, $Gebruiker_email, $Gebruiker_website, $Datum, $Tijd);
public function alle_reacties ();
}
abstract class DatabaseGastenboekAdapter implements DatabaseAdapter
{
protected $_Database;
public function __construct (Database $Database)
{
$this->_Database = $Database;
}
public function reactie_toevoegen ($Reactie, $Gebruiker_naam, $Gebruiker_email, $Gebruiker_website, $Datum, $Tijd)
{
$Query =
"
INSERT INTO
reactie
(
reactie,
gebruiker_naam,
gebruiker_email,
gebruiker_website,
datum,
tijd
)
VALUES
(
'" .mysqli_real_escape_string ($this->_Connectie, $Reactie). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_naam). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_email). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_website). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Datum). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Tijd). "'
)
";
$this->_Database->query ($Query);
}
public function alle_reacties ()
{
$Query =
"
SELECT
reactie,
gebruiker_naam,
gebruiker_website,
datum,
tijd
FROM
reactie
ORDER BY
datum
DESC
tijd
DESC
";
return $this->_Database->query ($Query)->fetch_alles ();
}
}
class MySQLGastenboekAdapter extends DatabaseGastenboekAdapter
{
public function __construct (MySQL $MySQL)
{
parent::__construct ($MySQL);
}
}
$Database = new MySQL ();
$Database->maak_verbinding ('localhost', 'root', '', 'gastenboek');
$Adapter = new MySQLGastenboekAdapter ($Database);
$Gastenboek = new Gastenboek ($Adapter);
echo $Gastenboek->weergeven ();
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$Gebruiker = new Gebruiker ($_POST['gebruiker_naam'], $_POST['gebruiker_email'], $_POST['gebruiker_website']);
$Gebruiker->reactie_plaatsen ($Adapter, $_POST['reactie']);
}
?>
### Gastenboek class ###
class Gastenboek
{
private $_Adapter;
public function __construct (GastenboekAdapter $Adapter)
{
$this->_Adapter = $Adapter;
}
public function weergeven ()
{
$Reacties = $this->_Adapater->alle_reacties ();
$Resultaat = '<div id="gastenboek">';
foreach ($Reacties as $Reactie)
{
$Gebruiker = new Gebruiker ($Reactie['gebruiker_naam'], NULL, $Reactie['gebruiker_website']);
$Reactie = new Reactie ($this->_Adapter, $Reactie['reactie'], $Gebruiker, $Reactie['datum'], $Reactie['tijd']);
$Resultaat = $Reactie->weergeven ();
}
return $Resultaat . '</div>';
}
}
class Gebruiker
{
private $_Naam;
private $_Email;
private $_Website;
public function __construct($Naam, $Email, $Website)
{
$this->_Naam = $Naam;
$this->_Email = $Email;
$this->_Website = $Website;
}
public function reactie_plaatsen (GastenboekAdapter $Adapter, $Reactie)
{
$Reactie = new Reactie ($Adapater, $Reactie, $this, date ('Y-m-d'), date ('H:i'));
$Reactie->opslaan ();
}
public function weergeven ()
{
if ($this->_Website != NULL)
{
return '<a href="' .$this->_Website. '">' .$this->_Naam. '</a>';
}
else
{
return $this->_Naam;
}
}
public function geef_gegevens ()
{
return array
(
'naam' => $this->_Naam,
'email' => $this->_Email,
'website' => $this->_Website
);
}
}
class Reactie
{
private $_Adapter;
private $_Gebruiker;
private $_Reactie;
private $_Datum;
private $_Tijd;
public function __construct (GastenboekAdapter $Adapater, $Reactie, $Gebruiker, $Datum, $Tijd)
{
$this->_Adapter = $Adapter;
$this->_Reactie = $Reactie;
$this->_Gebruiker = $Gebruiker;
$this->_Datum = $Datum;
$this->_Tijd = $Tijd;
}
public function weergeven ()
{
return
'
<div class="reactie">
<span class="geplaats">Geplaatst door ' .$this->_Gebruiker->weergeven. ' op <strong>' .$this->_Datum. '</strong> om <strong>' .$this->_Tijd. '</strong></span>
<p>' .$this->_Reactie. '</p>
';
}
public function opslaan ()
{
$Gebruiker = $this->_Gebruiker->geef_gevens ();
$this->_Adapter->reactie_toevoegen
(
$this->_Reactie,
$Gebruiker['naam'],
$Gebruiker['email'],
$Gebruiker['website'],
$this->_Datum,
$this->_Tijd
);
}
}
interface Database
{
public function maak_verbinding ($Host, $Gebruikersnaam, $Wachtwoord, $Naam);
public function query ();
}
interface DatabaseResult
{
public function fetch_assoc ();
public function fetch_alles ();
public function aantal_regels ();
}
class MySQL implements Database
{
private $_Connectie;
public function maak_verbinding ($Host, $Gebruikersnaam, $Wachtwoord, $Naam)
{
if (!$this->_Connectie = mysqli_connect($Host, $Gebruikersnaam, $Wachtwoord, $Naam))
{
throw new DatabaseExeception ('Kan geen verbinding met de database leggen');
}
}
public function query ($Query)
{
$Resultaat = mysqli_query ($this->_Connectie, $Query);
if ($Resultaat)
{
throw new DatabaseExeception ('Er is een fout opgetreden met het uitvoeren van de query');
}
return new MySQLResult ($Resultaat);
}
}
class MySQLResult implements DatabaseResult
{
private $_Resultaat;
public function __construct ($Resultaat)
{
$this->_Resultaat = $Resultaat;
}
public function fetch_assoc ()
{
return mysqli_fetch_assoc ($this->_Resultaat);
}
public function fetch_alles ()
{
$Resultaat = array ();
while ($Regel = $this->fetch_assoc ())
{
$Resultaat[] = $Regel;
}
$Resultaat;
}
public function aantal_regels ()
{
return mysqli_num_rows ($this->_Resultaat);
}
}
class DatabaseException extends Exception
{
}
interface GastenboekAdapter
{
public function reactie_toevoegen ($Reactie, $Gebruiker_naam, $Gebruiker_email, $Gebruiker_website, $Datum, $Tijd);
public function alle_reacties ();
}
abstract class DatabaseGastenboekAdapter implements DatabaseAdapter
{
protected $_Database;
public function __construct (Database $Database)
{
$this->_Database = $Database;
}
public function reactie_toevoegen ($Reactie, $Gebruiker_naam, $Gebruiker_email, $Gebruiker_website, $Datum, $Tijd)
{
$Query =
"
INSERT INTO
reactie
(
reactie,
gebruiker_naam,
gebruiker_email,
gebruiker_website,
datum,
tijd
)
VALUES
(
'" .mysqli_real_escape_string ($this->_Connectie, $Reactie). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_naam). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_email). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Gebruiker_website). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Datum). "',
'" .mysqli_real_escape_string ($this->_Connectie, $Tijd). "'
)
";
$this->_Database->query ($Query);
}
public function alle_reacties ()
{
$Query =
"
SELECT
reactie,
gebruiker_naam,
gebruiker_website,
datum,
tijd
FROM
reactie
ORDER BY
datum
DESC
tijd
DESC
";
return $this->_Database->query ($Query)->fetch_alles ();
}
}
class MySQLGastenboekAdapter extends DatabaseGastenboekAdapter
{
public function __construct (MySQL $MySQL)
{
parent::__construct ($MySQL);
}
}
$Database = new MySQL ();
$Database->maak_verbinding ('localhost', 'root', '', 'gastenboek');
$Adapter = new MySQLGastenboekAdapter ($Database);
$Gastenboek = new Gastenboek ($Adapter);
echo $Gastenboek->weergeven ();
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$Gebruiker = new Gebruiker ($_POST['gebruiker_naam'], $_POST['gebruiker_email'], $_POST['gebruiker_website']);
$Gebruiker->reactie_plaatsen ($Adapter, $_POST['reactie']);
}
?>
<html>
<head>
<body>
<form method="POST" action="">
<table>
<tr>
<td>Naam </td><td><input type="text" name="gebruiker_naam" value="" size="30" /></td>
</tr>
<tr>
<td>Email </td><td><input type="text" name="gebruiker_email" value="" size="30" /></td>
</tr>
<tr>
<td>Website </td><td><input type="text" name="gebruiker_website" value="" size="30" /></td>
</tr>
<tr>
<td>Reactie </td><td><textarea name="reactie"></textarea></td>
</tr>
</table>
</form>
</body>
</head>
</html>
Heb je al error handeling aangezet? Errors naar boven gekomen?
Post alleen relevante code aub:) (aan html code hebben we neit zoveel)
Fatal error: Declaration of MySQL::query() must be compatible with that of Database::query().
Fatale fout: declaratie van MySQL::query() moet compitabel zijn met die van Database::query().
Wat zien we? De klasse MySQL implementeert de interface Database. Bij de klasse MySQL zien we een method query($Query), maar in de interface Database enkel query(). Je moet de parameter $Query dus ook even in de interface Database zetten.
Heeeel erg bedankt. Dat was hem idd:)