Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16470 программистов и 1771 робот. Сейчас ищут 898 программистов ...
Mail_Mbox::insert
Вернуться к: Mail_Mbox
Mail_Mbox::insert
Mail_Mbox::insert() – Insert a message
Synopsis
require_once '/Mbox.php';
mixed Mail_Mbox::insert ( string $content , mixed $offset = null )
Mail_Mbox will insert the message according to the specified offset. (Remember: message 3 is the fourth message). The default is to insert the message AFTER the last message (offset = null).
Note: Mail_Mbox automatically adds \n\n at end of the message.
Parameter
- string $content
-
The content of the new message.
- mixed $offset
Return value
returns Return true or the PEAR_Error object on failure.
Вернуться к: Mail_Mbox