SAMMessage->__construct()

(no version information, might be only in CVS)

SAMMessage->__construct() --  新しいメッセージオブジェクトを作成する

説明

class SAMMessage {

__construct ( [mixed body] )

}

新しい SAMMessage オブジェクトを作成します。 オプションでメッセージ本文を指定します。

パラメータ

body

オプションで指定するメッセージ本文。

例 1. メッセージの作成

<?php

$msg
= new SAMMessage();

?>

例 2. 単純なテキストを含むメッセージの作成

<?php

$msg
= new SAMMessage('This is a simple text message');

?>