Name

hdf_write_string — Serialise an HDF dataset to a string.

Description

string hdf_write_string(hdf);
resource hdf;

Returns a string representation of the HDF resource hdf.

Example 6. hdf_write_string example

			
<?php
$hdf = hdf_init();
hdf_set_value($hdf, 'data.node', 'my value');
print hdf_write_string($hdf);
?>