Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17202 программиста и 1833 робота. Сейчас ищут 1696 программистов ...
Net_SMTP::setDebug
Вернуться к: Net_SMTP
Net_SMTP::setDebug
Net_SMTP::setDebug() – Set the value of the debugging flag.
Synopsis
require_once 'NET/SMTP.php';
voidNet_SMTP::setDebug ( boolean $debug , callback $handler )
Enables or disables debugging. Once debugging is enabled, messages preceded by "DEBUG: " are being echoed out.
See also Debugging introduction
Parameter
- boolean $debug
-
New value for the debugging flag.
- callback $handler
-
Callback function that gets called with Net_SMTP object and message to display.
Throws
throws no exceptions thrown
Note
This function can not be called statically.
Вернуться к: Net_SMTP