(No version information available, might be only in CVS)
SAMMessage->__construct — 新しいメッセージオブジェクトを作成する
オプションで指定するメッセージ本文。
例1 メッセージの作成
<?php
$msg = new SAMMessage();
?>
例2 単純なテキストを含むメッセージの作成
<?php
$msg = new SAMMessage('This is a simple text message');
?>