Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16084 программиста и 1771 робот. Сейчас ищут 1832 программиста ...
SAMMessage::body - The body of the message.
Вернуться к: SAM Функции
SAMMessage::body
(PECL sam >= 0.1.0)
SAMMessage::body — The body of the message.
Описание
string $SAMMessage->body;
The "body" property contains the actual body of the message. It may not always be set.
Примеры
Пример #1 Setting a text string into the body of a message
<?php
$msg = new SAMMessage();
$msg->body = 'This is a simple message';
?>
Вернуться к: SAM Функции