ccvs_done
string ccvs_done(string session)
Closes a CCVS session.
Returns:
OK
Description:
ccvs_done() should be called when you're finished using a session, to free its system resources and shut down the CCVS engine. session
must be a valid session ID as returned by ccvs_init(). This is not done for you automatically, so it's a good idea to put it at the end of all scripts using CCVS.
Version:
PHP 4 since 4.0.2
Example:
Shut down a CCVS session
ccvs_done($session);
|