Fields Property |
![]() ![]() |
CalyxFile->Fields Property
The
Fields property is not available until after the CalyxFile object has been
created by passing the full file path to the constructor.
This property is an array of Key/Value pairs containing all of the fields
obtained from the CalyxFile that was instantiated.
Code Examples
[PHP]
require
'./CalyxFile.php';
$clxFile =
new
CalyxFile( 'johnsmith.brw'); foreach( $clxFile->Fields as $key =>
$value)
public datetime LastUpdated ( get; )
{
echo 'Field ID '.$key.' ==
'.$value;
echo '<br />'
};