Name

hdf_read_file — Read an HDF data file.

Description

bool hdf_read_file(hdf,  
 path); 
resource  hdf;
string  path;

Populates the HDF resource hdf from the file path. Returns true on success, false on failure.

Example 4. hdf_read_file example

			
<?php
$hdf = hdf_init();
hdf_read_file($hdf, '/path/to/data.hdf');
print_r($hdf);
?>