Beschreibung
bool
dbx_close
( object link_identifier)
Gibt
bei
Erfolg
TRUE
zurück
,
im
Fehlerfall
FALSE
.
Beispiel
1
.
dbx_close(
)
?php
$link
=
dbx_connect(
DBX_MYSQL
,
"localhost"
,
"db"
,
"username"
,
"password"
)
or
die
("Fehler
beim
Verbinden")
;
print("Verbindung
hergestellt")
;
dbx_close($link)
;
?
|
|
Anmerkung
:
Konsultieren
Sie
bitte
auch
die
modulspezifische
Dokumentation
.
Siehe
auch
dbx_connect(
)
.