{"id":5177,"date":"2009-08-22T18:51:50","date_gmt":"2009-08-22T18:51:50","guid":{"rendered":"https:\/\/ru.wordpress.org\/support\/2009\/08\/22\/xmlrpc\/"},"modified":"2009-08-22T18:51:50","modified_gmt":"2009-08-22T18:51:50","slug":"xmlrpc","status":"closed","type":"topic","link":"https:\/\/ru.wordpress.org\/support\/topic\/xmlrpc\/","title":{"rendered":"XMLRPC"},"content":{"rendered":"<p>\u0414\u043e\u0431\u0440\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u0443\u0442\u043e\u043a \u0432\u0430\u043c.<br \/>\n\u042f \u0449\u0430\u0441 \u043f\u0438\u0448\u0443 \u043c\u0443\u043b\u044c\u0442\u0438\u0430\u0434\u043c\u0438\u043d\u043a\u0443 \u043f\u043e\u0434 \u0432\u043e\u0440\u0434\u043f\u0440\u0435\u0441, \u0440\u0430\u0431\u043e\u0442\u0430\u044e\u0449\u0443\u044e \u0447\u0435\u0440\u0435\u0437 xmlrpc \u0438<br \/>\n\u0443 \u043c\u0435\u043d\u044f \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u043c\u0430 \u0441 \u0440\u0430\u0441\u043f\u0430\u0440\u0441\u0438\u0432\u0430\u043d\u0438\u0435\u043c \u0440\u0435\u0441\u043f\u043e\u043d\u0441\u0430 \u043e\u0442 xmlrpc.<br \/>\n\u041f\u043e \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0439 \u0438 \u043d\u0435\u043f\u043e\u043d\u044f\u0442\u043d\u043e\u0439 \u043c\u043d\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u0435, \u0441 \u0447\u0430\u0441\u0442\u0438 \u0441\u0430\u0439\u0442\u043e\u0432 \u0440\u0430\u0441\u043f\u0430\u0440\u0441\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u0441\u0451 \u043e\u0442\u043b\u0438\u0447\u043d\u043e, \u0430 \u0441 \u0447\u0430\u0441\u0442\u0438 \u043d\u0435\u0442. \u041f\u0440\u0438 \u0447\u0451\u043c \u043e\u0442\u0432\u0435\u0442 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442 \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u0438\u043d\u0430\u043a\u043e\u0432\u044b\u0439 &#8230; \u043f\u0440\u043e\u0431\u043e\u0432\u0430\u043b \u0432\u043f \u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u0440\u0430\u0437\u043d\u044b\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u0432\u0441\u0451 \u0440\u0430\u0432\u043d\u043e \u043d\u0435 \u043f\u043e\u043c\u043e\u0433\u0430\u0435\u0442<br \/>\n\u0432\u043e\u0442 \u043f\u0440\u0438\u043c\u0435\u0440 \u0441\u043a\u0440\u0438\u043f\u0442\u0430 \u0440\u0430\u0441\u043f\u0430\u0440\u0441\u0438\u0432\u0430\u043d\u0438\u044f<\/p>\n<pre><code>function parse() {\n        $this-&gt;message = preg_replace(&#39;\/&lt;\\?xml(.*)?\\?&#39;.&#39;&gt;\/&#39;, &#39;&#39;, $this-&gt;message);\n        if (trim($this-&gt;message) == &#39;&#39;) {\n            return false;\n        }\n        $this-&gt;_parser = xml_parser_create();\n        xml_parser_set_option($this-&gt;_parser, XML_OPTION_CASE_FOLDING, false);\n        xml_set_object($this-&gt;_parser, $this);\n        xml_set_element_handler($this-&gt;_parser, &#39;tag_open&#39;, &#39;tag_close&#39;);\n        xml_set_character_data_handler($this-&gt;_parser, &#39;cdata&#39;);\n\t\tif (!xml_parse($this-&gt;_parser, $this-&gt;message)) {\n            return false;\n        }\n        xml_parser_free($this-&gt;_parser);\n        if ($this-&gt;messageType == &#39;fault&#39;) {\n            $this-&gt;faultCode = $this-&gt;params[0][&#39;faultCode&#39;];\n            $this-&gt;faultString = $this-&gt;params[0][&#39;faultString&#39;];\n        }\n        return true;\n    }<\/code><\/pre>\n<p>\u0432\u043e\u0442 \u0442\u0443\u0442 \u0432\u043e\u0442<br \/>\nxml_parse($this-&gt;_parser, $this-&gt;message)<br \/>\n\u043c\u043d\u0435 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 false \ud83d\ude41 <\/p>\n<p>\u0441\u0430\u043c\u043e\u0435 \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0435, \u0447\u0442\u043e \u043f\u043e\u0441\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0435\u0441\u043b\u0438 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c<br \/>\n\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 \u0440\u0435\u0441\u043f\u043e\u043d\u0441\u0430 \u0438 \u0440\u0435\u043a\u0432\u0435\u0441\u0442\u0430 \u043e\u0434\u0438\u043d\u0430\u043a\u043e\u0432\u0430\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u0441\u0430\u0439\u0442\u0430\u043c \u0438\u0434\u0451\u0442, \u043d\u043e \u0435\u0441\u0442\u044c \u043e\u0434\u043d\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u043e\u0435 \u043e\u0442\u043b\u0438\u0447\u0438\u0435, \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043d\u0435\u0437\u0430\u043c\u0435\u0442\u043d\u043e\u0435,<br \/>\n\u0440\u0435\u0441\u043f\u043e\u043d\u0441 \u043d\u0430 \u043d\u0435\u0440\u0430\u0441\u043f\u0430\u0440\u0441\u0438\u0432\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u0441\u0430\u0439\u0442\u0430\u0445 \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u043e\u0434\u043d\u0443 \\n<br \/>\n\u0441\u0442\u0440\u0430\u043d\u043d\u043e&#8230; \u043f\u043e \u0438\u0434\u0435\u0435 \u043d\u0438 \u043d\u0430 \u0447\u0442\u043e \u044d\u0442\u043e \u0432\u043b\u0438\u044f\u0442\u044c \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u043e<\/p>\n","protected":false},"template":"","class_list":["post-5177","topic","type-topic","status-closed","hentry","topic-tag-xmlrpc"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ru.wordpress.org\/support\/wp-json\/wp\/v2\/topic\/5177","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ru.wordpress.org\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/ru.wordpress.org\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/ru.wordpress.org\/support\/wp-json\/wp\/v2\/topic\/5177\/revisions"}],"wp:attachment":[{"href":"https:\/\/ru.wordpress.org\/support\/wp-json\/wp\/v2\/media?parent=5177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}