by sylvain_aura on Fri Oct 07, 2011 8:39 am
Why don't you use i5command() and run RTVOBJD or RTVMBRD to retrieve properties.
I think "CHGDATE" is the value you are looking for.
$ret = i5_command ( "rtvobjd", array ("obj"=>"MYLIB/MYFILE", "objtype"=>"*FILE"), array ("CHGDATE" => "chgdate") );
if ($ret == false) {
$error = i5_error ();
print_r ( $error );
}
echo "<BR>Chg date : <span class='rouge'>" . $chgdate . "</span><BR>";
Sylvain