Name
hdf_destroy — Deallocate an HDF data set.
Description
void hdf_destroy(
hdf)
;
resource hdf
;
Frees memory resources associated with the HDF resource hdf.
![[Note]](images/note.png) | Note |
---|
The variable representing hdf must not be used in any more operations after having passed it to this function!
|
Example 16. hdf_destroy example
<?php
$hdf = hdf_init();
hdf_destroy($hdf);
?>