Fields Property    
Navigation: CS File Writer for PHP > Properties >

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. 

[PHP]
public datetime LastUpdated ( get; )

Code Examples

[PHP]

require './CalyxFile.php';

$clxFile = new CalyxFile( 'johnsmith.brw');

foreach( $clxFile->Fields as $key => $value)
{
      echo 'Field ID '.$key.' == '.$value;
      echo '<br />'
};


  Copyright (c) 2010 Cite Systems, Inc.