downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

fbsql_commit> <fbsql_clob_size
[edit] Last updated: Fri, 17 May 2013

view this page in

fbsql_close

(PHP 4 >= 4.0.6, PHP 5)

fbsql_closeChiude la connessione a FrontBase

Descrizione

boolean fbsql_close ([ resource $link_identifier ] )

Restituisce: TRUE in caso di successo, FALSE in caso di fallimento.

fbsql_close() chiude la connessione al server FrontBase associata ad uno specificato link identifier. Se il link_identifier non fosse specificato, verrebbe chiusa l'ultima connessione aperta.

Non รจ sempre necessario usare fbsql_close() nel caso di connessioni non permanenti, esse verranno chiuse automaticamente alla fine dell'esecuzione dello script.

Example #1 Uso di fbsql_close()

<?php
    $link 
fbsql_connect ("localhost""_SYSTEM""secret")
        or die (
"Could not connect");
    print (
"Connected successfully");
    
fbsql_close ($link);
?>

Vedere anche: fbsql_connect() e fbsql_pconnect().



add a note add a note User Contributed Notes fbsql_close - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites