Forum und email

SAMMessage->__construct()

(No version information available, might be only in CVS)

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

説明

SAMMessage
__construct ([ mixed $body ] )

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

パラメータ

body

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

Example#1 メッセージの作成

<?php

$msg 
= new SAMMessage();

?>

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

<?php

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

?>