JHttpResponse
/** * @package Joomla.Platform * @subpackage HTTP * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * HTTP response data object class. класс объекта данных HTTP ответа. * * @package Joomla.Platform * @subpackage HTTP * @since 11.3 */ class JHttpResponse { /** * @var integer The server response code. Код ответа сервера * @since 11.3 */ public $code; /** * @var array Response headers. Заголовок ответа. * @since 11.3 */ public $headers = array(); /** * @var string Server response body. Тело ответа сервера. * @since 11.3 */ public $body; }