cs_destroy — Clean up and deallocate a CS parse tree.
void cs_destroy( | cs) ; |
resource cs
;
Frees memory resources associated with the CS resource cs
.
![]() | Note |
---|---|
The variable representing |
Example 26. cs_destroy
example
<?php $hdf = hdf_init(); $cs = cs_init($hdf); hdf_destroy($hdf); cs_destroy($cs); ?>