Description
bool
aspseek_close ( [resource link_identifier])
Returns TRUE on success or FALSE on failure.
aspseek_close() closes the connection to
the searchd server that's associated with the specified link
identifier. If link_identifier isn't
specified, the last opened link is used.
Using aspseek_close() isn't usually necessary,
as non-persistent open links are automatically closed at the end
of the script's execution.
Example 1. ASPseek close example <?php
$link = aspseek_connect("localhost")
or die("Could not connect: " . aspseek_error());
print ("Connected successfully");
aspseek_close($link);
?> |
|
See also: aspseek_connect() and
aspseek_pconnect().