b = object_name.write(string_expʃ, argument1, ..., argumentNʅ)
b = object_name.write(msg_numʃ, argument1, ..., argumentNʅ)
Each
argument is sequentially inserted into the
string_exp or
msg_num. Arguments can be numeric or string expressions, but the type of the argument must match the type of the receiving field in the message text. See
Message Formatting Options for a complete list of formatting options.
The following table summarizes the options for writing to a StringWriter:
The function returns a logical value of
1 (
true) if successful and
0 (
false) otherwise.
Terms & Conditions:<strong>
<<< Do not use the application if you do not accept the T&Cs! >>><br></strong>
<?
HOUSEHOLD_REPORT.write("The report was generated at: ", timestamp());
// alternatively, use $ to refer to HOUSEHOLD_REPORT
$.write("The report was generated at: ", timestamp());
?>