xmlrpc_message_set

Хочешь помочь с переводом? Это очень просто и быстро. Лишь зарегистрируйся, и можешь тут же начать переводить.

includes/xmlrpc.inc, строка 193

Версии
5 – 6
xmlrpc_message_set($value = NULL)

Store a copy of the $xmlrpc_message object temporarily.

Параметры

$value Object

Возвращаемое значение

The most recently stored $xmlrpc_message

▾ 5 функции вызывают xmlrpc_message_set()

xmlrpc_message_cdata in includes/xmlrpc.inc
xmlrpc_message_get in includes/xmlrpc.inc
xmlrpc_message_parse in includes/xmlrpc.inc
Parse an XML-RPC message. If parsing fails, the faultCode and faultString will be added to the message object.
xmlrpc_message_tag_close in includes/xmlrpc.inc
xmlrpc_message_tag_open in includes/xmlrpc.inc

Код

<?php
function xmlrpc_message_set($value = NULL) {
  static $xmlrpc_message;
  if ($value) {
    $xmlrpc_message = $value;
  }
  return $xmlrpc_message;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему