PHP - Fonction Fermer

Syntaxe

void odbc_close ( resource $connection_id )

Définition et utilisation

Il fermait une connexion odbc

Valeurs de retour

Aucune valeur n'est renvoyée

Paramètres

Sr. Non Paramètres et description
1

connection_id

il contient des informations d'identification de connexion

Exemple

Essayez l'exemple suivant

<?php
   $input_ID = odbc_open("Tutorialspoint","user","pass");
   odbc_close($input_ID);
?>